From bae2c30cb841ea93d222206400e5e1199d5f8eb6 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Wed, 14 Oct 2015 22:59:38 -0700 Subject: [PATCH 01/25] Makes mutant human job checks be done even if the mutant human config is off. --- code/modules/mob/living/carbon/human/species_types.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index 95105c87bdc..03987003549 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -13,9 +13,6 @@ use_skintones = 1 /datum/species/human/qualifies_for_rank(rank, list/features) - if(!config.mutant_humans) //No mutie scum here - return 1 - if((!features["tail_human"] || features["tail_human"] == "None") && (!features["ears"] || features["ears"] == "None")) return 1 //Pure humans are always allowed in all roles. From 84fc0776951f9dba1b86d0f9708d23872f4fdffe Mon Sep 17 00:00:00 2001 From: Xhuis Date: Fri, 16 Oct 2015 19:58:42 -0400 Subject: [PATCH 02/25] Radiation tweaks and a geiger counter --- .../objects/items/devices/geiger_counter.dm | 92 ++++++++++++++++++ code/game/objects/radiation.dm | 2 + html/changelogs/Xhuis-Read.yml | 6 ++ icons/obj/device.dmi | Bin 27031 -> 28119 bytes tgstation.dme | 1 + 5 files changed, 101 insertions(+) create mode 100644 code/game/objects/items/devices/geiger_counter.dm create mode 100644 html/changelogs/Xhuis-Read.yml diff --git a/code/game/objects/items/devices/geiger_counter.dm b/code/game/objects/items/devices/geiger_counter.dm new file mode 100644 index 00000000000..7c0cbe2c37c --- /dev/null +++ b/code/game/objects/items/devices/geiger_counter.dm @@ -0,0 +1,92 @@ +#define RAD_LEVEL_NORMAL 10 +#define RAD_LEVEL_MODERATE 30 +#define RAD_LEVEL_HIGH 75 +#define RAD_LEVEL_VERY_HIGH 125 +#define RAD_LEVEL_CRITICAL 200 + +/obj/item/device/geiger_counter //DISCLAIMER: I know nothing about how real-life Geiger counters work. This will not be realistic. ~Xhuis + name = "geiger counter" + desc = "A handheld device used for detecting and measuring radiation pulses." + icon_state = "geiger_off" + item_state = "electronic" + w_class = 2 + slot_flags = SLOT_BELT + materials = list(MAT_METAL = 150, MAT_GLASS = 150) + var/scanning = 0 + var/radiation_count = 0 + +/obj/item/device/geiger_counter/New() + ..() + SSobj.processing |= src + +/obj/item/device/geiger_counter/Destroy() + SSobj.processing.Remove(src) + ..() + +/obj/item/device/geiger_counter/process() + if(radiation_count > 0) + radiation_count-- + update_icon() + +/obj/item/device/geiger_counter/examine(mob/user) + ..() + if(!scanning) + return 1 + user << "Alt-click it to clear stored radiation levels." + switch(radiation_count) + if(-INFINITY to RAD_LEVEL_NORMAL) + user << "Ambient radiation level count reports that all is well." + if(RAD_LEVEL_NORMAL + 1 to RAD_LEVEL_MODERATE) + user << "Ambient radiation levels slightly above average." + if(RAD_LEVEL_MODERATE + 1 to RAD_LEVEL_HIGH) + user << "Ambient radiation levels above average." + if(RAD_LEVEL_HIGH + 1 to RAD_LEVEL_VERY_HIGH) + user << "Ambient radiation levels highly above average." + if(RAD_LEVEL_VERY_HIGH + 1 to RAD_LEVEL_CRITICAL) + user << "Ambient radiation levels nearing critical level." + if(RAD_LEVEL_CRITICAL + 1 to INFINITY) + user << "Ambient radiation levels above critical level!" + +/obj/item/device/geiger_counter/update_icon() + if(!scanning) + icon_state = "geiger_off" + return 1 + switch(radiation_count) + if(-INFINITY to RAD_LEVEL_NORMAL) + icon_state = "geiger_on_1" + if(RAD_LEVEL_NORMAL + 1 to RAD_LEVEL_MODERATE) + icon_state = "geiger_on_2" + if(RAD_LEVEL_MODERATE + 1 to RAD_LEVEL_HIGH) + icon_state = "geiger_on_3" + if(RAD_LEVEL_HIGH + 1 to RAD_LEVEL_VERY_HIGH) + icon_state = "geiger_on_4" + if(RAD_LEVEL_VERY_HIGH + 1 to RAD_LEVEL_CRITICAL) + icon_state = "geiger_on_4" + if(RAD_LEVEL_CRITICAL + 1 to INFINITY) + icon_state = "geiger_on_5" + ..() + +/obj/item/device/geiger_counter/rad_act(amount) + if(!amount && scanning) + return 0 + radiation_count += amount + if(isliving(loc)) + var/mob/living/M = loc + M << "\icon[src] WARNING: Radiation pulse detected." + M << "\icon[src] PULSE SEVERITY: [amount]" + M << "\icon[src] CURRENT RADIATION COUNT: [radiation_count]" + update_icon() + +/obj/item/device/geiger_counter/attack_self(mob/user) + scanning = !scanning + update_icon() + user << "\icon[src] You switch [scanning ? "on" : "off"] [src]." + +/obj/item/device/geiger_counter/AltClick() + ..() + if(!scanning) + usr << "[src] must be on to reset its radiation level!" + return 0 + radiation_count = 0 + usr << "You flush [src]'s radiation counts, resetting it to normal." + update_icon() diff --git a/code/game/objects/radiation.dm b/code/game/objects/radiation.dm index 0016fdae514..566f6c84505 100644 --- a/code/game/objects/radiation.dm +++ b/code/game/objects/radiation.dm @@ -34,3 +34,5 @@ if(amount) var/blocked = run_armor_check(null, "rad", "Your clothes feel warm.", "Your clothes feel warm.") apply_effect(amount, IRRADIATE, blocked) + for(var/obj/I in src) //Radiation is also applied to items held by the mob + I.rad_act(amount) diff --git a/html/changelogs/Xhuis-Read.yml b/html/changelogs/Xhuis-Read.yml new file mode 100644 index 00000000000..7e1e43a4496 --- /dev/null +++ b/html/changelogs/Xhuis-Read.yml @@ -0,0 +1,6 @@ +author: Xhuis +delete-after: True + +changes: + - rscadd: "Geiger counters have been added and are obtainable from autolathes and EngiVends. They are built into engineering hardsuits." + - tweak: "When a mob is impacted by radiation, the radiation is now relayed to all items on the mob." diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 14fe16e393599f6e4c8e2ad2b955d65090765937..69774b1f8c6b76e6bb13d65e9afc84d9e190c06b 100644 GIT binary patch delta 7276 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 delta 6230 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 G*#85tMoX0d diff --git a/tgstation.dme b/tgstation.dme index 652d794d527..fda52eacdbe 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -605,6 +605,7 @@ #include "code\game\objects\items\devices\chameleonproj.dm" #include "code\game\objects\items\devices\doorCharge.dm" #include "code\game\objects\items\devices\flashlight.dm" +#include "code\game\objects\items\devices\geiger_counter.dm" #include "code\game\objects\items\devices\instruments.dm" #include "code\game\objects\items\devices\laserpointer.dm" #include "code\game\objects\items\devices\lightreplacer.dm" From 2891ba53be4caa9281a66e6f2f9ee5987ab1c37b Mon Sep 17 00:00:00 2001 From: Xhuis Date: Fri, 16 Oct 2015 23:20:14 -0400 Subject: [PATCH 03/25] Adds the counters into the game --- code/game/machinery/vending.dm | 2 +- .../objects/items/devices/geiger_counter.dm | 64 +++++++++++++++++- .../research/designs/autolathe_designs.dm | 10 ++- html/changelogs/Xhuis-Read.yml | 2 +- icons/obj/device.dmi | Bin 28119 -> 30593 bytes 5 files changed, 72 insertions(+), 6 deletions(-) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 9e659261180..663e3f21761 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -913,7 +913,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C icon_state = "engivend" icon_deny = "engivend-deny" req_access_txt = "11" //Engineering Equipment access - products = list(/obj/item/clothing/glasses/meson/engine = 2,/obj/item/device/multitool = 4,/obj/item/weapon/electronics/airlock = 10,/obj/item/weapon/electronics/apc = 10,/obj/item/weapon/electronics/airalarm = 10,/obj/item/weapon/stock_parts/cell/high = 10, /obj/item/weapon/rcd/loaded = 3,) + products = list(/obj/item/clothing/glasses/meson/engine = 2,/obj/item/device/multitool = 4,/obj/item/weapon/electronics/airlock = 10,/obj/item/weapon/electronics/apc = 10,/obj/item/weapon/electronics/airalarm = 10,/obj/item/weapon/stock_parts/cell/high = 10, /obj/item/weapon/rcd/loaded = 3, /obj/item/device/geiger_counter = 5) contraband = list(/obj/item/weapon/stock_parts/cell/potato = 3) premium = list(/obj/item/weapon/storage/belt/utility = 3) diff --git a/code/game/objects/items/devices/geiger_counter.dm b/code/game/objects/items/devices/geiger_counter.dm index 7c0cbe2c37c..7c4aded9890 100644 --- a/code/game/objects/items/devices/geiger_counter.dm +++ b/code/game/objects/items/devices/geiger_counter.dm @@ -14,6 +14,7 @@ materials = list(MAT_METAL = 150, MAT_GLASS = 150) var/scanning = 0 var/radiation_count = 0 + var/emagged = 0 /obj/item/device/geiger_counter/New() ..() @@ -24,6 +25,10 @@ ..() /obj/item/device/geiger_counter/process() + if(emagged) + if(radiation_count < 20) + radiation_count++ + return 0 if(radiation_count > 0) radiation_count-- update_icon() @@ -33,6 +38,9 @@ if(!scanning) return 1 user << "Alt-click it to clear stored radiation levels." + if(emagged) + user << "The display seems to be flickering at random radiation levels." + return 1 switch(radiation_count) if(-INFINITY to RAD_LEVEL_NORMAL) user << "Ambient radiation level count reports that all is well." @@ -51,6 +59,9 @@ if(!scanning) icon_state = "geiger_off" return 1 + if(emagged) + icon_state = "geiger_on_emag" + return 1 switch(radiation_count) if(-INFINITY to RAD_LEVEL_NORMAL) icon_state = "geiger_on_1" @@ -72,9 +83,8 @@ radiation_count += amount if(isliving(loc)) var/mob/living/M = loc - M << "\icon[src] WARNING: Radiation pulse detected." - M << "\icon[src] PULSE SEVERITY: [amount]" - M << "\icon[src] CURRENT RADIATION COUNT: [radiation_count]" + M << "\icon[src] RADIATION PULSE DETECTED." + M << "\icon[src] Severity: [amount]" update_icon() /obj/item/device/geiger_counter/attack_self(mob/user) @@ -82,6 +92,40 @@ update_icon() user << "\icon[src] You switch [scanning ? "on" : "off"] [src]." +/obj/item/device/geiger_counter/attack(mob/living/M, mob/user) + if(user.a_intent == "help") + if(!emagged) + user.visible_message("[user] scans [M] with [src].", "You scan [M]'s radiation levels with [src]...") + if(!M.radiation) + user << "\icon[src] Radiation levels within normal boundaries." + return 1 + else + user << "\icon[src] Subject is irradiated. Radiation levels: [M.radiation]." + return 1 + else + user.visible_message("[user] scans [M] with [src].", "You project [src]'s stored radiation into [M]'s body!") + M.rad_act(radiation_count) + radiation_count = 0 + return 1 + ..() + +/obj/item/device/geiger_counter/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/weapon/screwdriver) && emagged) + if(scanning) + user << "Turn off [src] before you perform this action!" + return 0 + user.visible_message("[user] unscrews [src]'s maintenance panel and begins fiddling with its innards...", "You begin resetting [src]...") + playsound(user, 'sound/items/Screwdriver.ogg', 50, 1) + if(!do_after(user, 40, target = user)) + return 0 + user.visible_message("[user] refastens [src]'s maintenance panel!", "You reset [src] to its factory settings!") + playsound(user, 'sound/items/Screwdriver2.ogg', 50, 1) + emagged = 0 + radiation_count = 0 + update_icon() + return 1 + ..() + /obj/item/device/geiger_counter/AltClick() ..() if(!scanning) @@ -90,3 +134,17 @@ radiation_count = 0 usr << "You flush [src]'s radiation counts, resetting it to normal." update_icon() + +/obj/item/device/geiger_counter/emag_act(mob/user) + if(!emagged) + if(scanning) + user << "Turn off [src] before you perform this action!" + return 0 + user << "You override [src]'s radiation storing protocols. It will now generate small doses of radiation, and stored rads are now projected into creatures you scan." + emagged = 1 + +#undef RAD_LEVEL_NORMAL +#undef RAD_LEVEL_MODERATE +#undef RAD_LEVEL_HIGH +#undef RAD_LEVEL_VERY_HIGH +#undef RAD_LEVEL_CRITICAL diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 7cf5fff85f4..0ed1120d503 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -569,4 +569,12 @@ build_type = AUTOLATHE materials = list(MAT_METAL = 150, MAT_GLASS = 125) build_path = /obj/item/weapon/hand_labeler - category = list("initial", "Electronics") \ No newline at end of file + category = list("initial", "Electronics") + +/datum/design/geiger + name = "Geiger counter" + id = "geigercounter" + build_type = AUTOLATHE + materials = list(MAT_METAL = 150, MAT_GLASS = 150) + build_path = /obj/item/device/geiger_counter + category = list("initial", "Tools") diff --git a/html/changelogs/Xhuis-Read.yml b/html/changelogs/Xhuis-Read.yml index 7e1e43a4496..a09ccc4653d 100644 --- a/html/changelogs/Xhuis-Read.yml +++ b/html/changelogs/Xhuis-Read.yml @@ -2,5 +2,5 @@ author: Xhuis delete-after: True changes: - - rscadd: "Geiger counters have been added and are obtainable from autolathes and EngiVends. They are built into engineering hardsuits." + - rscadd: "Geiger counters have been added and are obtainable from autolathes and EngiVends. They will measure the severity of radiation pulses while in your pockets, belt, or hands. One can scan a mob's radiation level by switching to Help intent and clicking on it. These counters never really discard the radiation they store, and rumor has it this can be used in nefarious ways..." - tweak: "When a mob is impacted by radiation, the radiation is now relayed to all items on the mob." diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 69774b1f8c6b76e6bb13d65e9afc84d9e190c06b..269391ef192d96da092bcf94935f4b934051b8ff 100644 GIT binary patch literal 30593 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 literal 28119 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 From 9ac1395466c745b04353d24dae3f76cd6f135a76 Mon Sep 17 00:00:00 2001 From: Xhuis Date: Sat, 17 Oct 2015 20:52:44 -0400 Subject: [PATCH 04/25] Adds geiger counters to radiation closets --- .../objects/structures/crates_lockers/closets/utility_closets.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index 3290d6cc83c..064256f8f10 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -133,6 +133,7 @@ /obj/structure/closet/radiation/New() ..() + new /obj/item/device/geiger_counter(src) new /obj/item/clothing/suit/radiation(src) new /obj/item/clothing/head/radiation(src) From 9bcb1623b6b6e869152d42e577e2daf18102469d Mon Sep 17 00:00:00 2001 From: Xhuis Date: Sun, 18 Oct 2015 12:31:04 -0400 Subject: [PATCH 05/25] New sprites by WJohnston --- .../objects/items/devices/geiger_counter.dm | 2 +- icons/obj/device.dmi | Bin 30593 -> 28391 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/geiger_counter.dm b/code/game/objects/items/devices/geiger_counter.dm index 7c4aded9890..2c80c7f9fea 100644 --- a/code/game/objects/items/devices/geiger_counter.dm +++ b/code/game/objects/items/devices/geiger_counter.dm @@ -8,7 +8,7 @@ name = "geiger counter" desc = "A handheld device used for detecting and measuring radiation pulses." icon_state = "geiger_off" - item_state = "electronic" + item_state = "multitool" w_class = 2 slot_flags = SLOT_BELT materials = list(MAT_METAL = 150, MAT_GLASS = 150) diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 269391ef192d96da092bcf94935f4b934051b8ff..9cfc92e39c03fd0ccdd56f9720b2827ba99f4698 100644 GIT binary patch literal 28391 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 From 055427b65cb28418bdd9f0e259fb11335e1e910d Mon Sep 17 00:00:00 2001 From: bgobandit Date: Sun, 18 Oct 2015 13:50:34 -0400 Subject: [PATCH 06/25] human ==> humanoid where applicable --- code/game/machinery/telecomms/computers/logbrowser.dm | 2 +- code/modules/projectiles/projectile/magic.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/telecomms/computers/logbrowser.dm b/code/game/machinery/telecomms/computers/logbrowser.dm index c30b28534d5..eafe17f7091 100644 --- a/code/game/machinery/telecomms/computers/logbrowser.dm +++ b/code/game/machinery/telecomms/computers/logbrowser.dm @@ -79,7 +79,7 @@ var/list/animals = typesof(/mob/living/simple_animal) if(mobtype in humans) - race = "Human" + race = "Humanoid" language = race else if(mobtype in slimes) // NT knows a lot about slimes, but not aliens. Can identify slimes diff --git a/code/modules/projectiles/projectile/magic.dm b/code/modules/projectiles/projectile/magic.dm index 97bbdc0a05f..ac0d63109f5 100644 --- a/code/modules/projectiles/projectile/magic.dm +++ b/code/modules/projectiles/projectile/magic.dm @@ -141,7 +141,7 @@ var/mob/living/new_mob - var/randomize = pick("monkey","robot","slime","xeno","human","animal") + var/randomize = pick("monkey","robot","slime","xeno","humanoid","animal") switch(randomize) if("monkey") new_mob = new /mob/living/carbon/monkey(M.loc) @@ -213,7 +213,7 @@ if("butterfly") new_mob = new /mob/living/simple_animal/butterfly(M.loc) else new_mob = new /mob/living/simple_animal/chick(M.loc) new_mob.languages |= HUMAN - if("human") + if("humanoid") new_mob = new /mob/living/carbon/human(M.loc) var/datum/preferences/A = new() //Randomize appearance for the human From 3a8df998e2fca7d368d85a4acf1f42792662b87d Mon Sep 17 00:00:00 2001 From: Robustin Date: Mon, 19 Oct 2015 12:52:17 -0400 Subject: [PATCH 07/25] Pneumatic Nerf Just for the consistency of improvised weapon power. These things still serve a purpose without (arguably) being the most powerful ranged weapon available to the crew. New max weight is 7, down from 10. --- code/game/objects/items/weapons/pneumaticCannon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/pneumaticCannon.dm b/code/game/objects/items/weapons/pneumaticCannon.dm index cde8d46f6d4..9b8516f8413 100644 --- a/code/game/objects/items/weapons/pneumaticCannon.dm +++ b/code/game/objects/items/weapons/pneumaticCannon.dm @@ -132,7 +132,7 @@ desc = "A gas-powered, object-firing cannon made out of common parts." force = 5 w_class = 3 - maxWeightClass = 10 + maxWeightClass = 7 gasPerThrow = 5 /datum/table_recipe/improvised_pneumatic_cannon //Pretty easy to obtain but From 8a3ce07b2522f2355195d2857f5cb67c6796991f Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Mon, 19 Oct 2015 15:40:33 -0500 Subject: [PATCH 08/25] update icon --- code/game/objects/items/weapons/twohanded.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/weapons/twohanded.dm b/code/game/objects/items/weapons/twohanded.dm index 0756e3ed61a..155e873cffd 100644 --- a/code/game/objects/items/weapons/twohanded.dm +++ b/code/game/objects/items/weapons/twohanded.dm @@ -369,3 +369,4 @@ qdel(C4) explosive = C42 desc = "A makeshift spear with [C42] attached to it. Alt+click on the spear to set your war cry!" + update_icon() From b554319d6a5755463d651b3d867a58808fe1ed6a Mon Sep 17 00:00:00 2001 From: bgobandit Date: Mon, 19 Oct 2015 18:02:57 -0400 Subject: [PATCH 09/25] biobag hotfix --- .../objects/structures/crates_lockers/closets/l3closet.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets/l3closet.dm b/code/game/objects/structures/crates_lockers/closets/l3closet.dm index c1c6c4c7f5d..2879b86a143 100644 --- a/code/game/objects/structures/crates_lockers/closets/l3closet.dm +++ b/code/game/objects/structures/crates_lockers/closets/l3closet.dm @@ -17,7 +17,7 @@ contents = list() new /obj/item/clothing/suit/bio_suit/virology( src ) new /obj/item/clothing/head/bio_hood/virology( src ) - + new /obj/item/weapon/storage/bag/bio( src ) /obj/structure/closet/l3closet/security icon_state = "bio_sec" @@ -46,4 +46,5 @@ ..() contents = list() new /obj/item/clothing/suit/bio_suit/scientist( src ) - new /obj/item/clothing/head/bio_hood/scientist( src ) \ No newline at end of file + new /obj/item/clothing/head/bio_hood/scientist( src ) + new /obj/item/weapon/storage/bag/bio( src ) \ No newline at end of file From f570aa64106dd75cab3221a062e3bf0b9eecfd06 Mon Sep 17 00:00:00 2001 From: oranges Date: Tue, 20 Oct 2015 14:20:59 +1300 Subject: [PATCH 10/25] Move autoadmin to a protected config datum This prevents any admin with permission to debug controller being able to edit this setting --- code/_globalvars/configuration.dm | 1 + code/controllers/configuration.dm | 12 ++++++++---- code/modules/client/client procs.dm | 4 ++-- code/world.dm | 1 + 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/code/_globalvars/configuration.dm b/code/_globalvars/configuration.dm index 2a4cfb7fb1b..af013fa2aa6 100644 --- a/code/_globalvars/configuration.dm +++ b/code/_globalvars/configuration.dm @@ -1,4 +1,5 @@ var/datum/configuration/config = null +var/datum/protected_configuration/protected_config = null var/host = null var/join_motd = null diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index fd83ab43f5d..10d8560ea1f 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -5,6 +5,11 @@ #define SECURITY_HAS_MAINT_ACCESS 2 #define EVERYONE_HAS_MAINT_ACCESS 4 +//Not accessible from usual debug controller verb +/datum/protected_configuration + var/autoadmin = 0 + var/autoadmin_rank = "Game Admin" + /datum/configuration var/server_name = null // server name (the name of the game window) var/station_name = null // station name (the name of the station in-game) @@ -176,8 +181,7 @@ var/maprotation = 1 var/maprotatechancedelta = 0.75 - var/autoadmin = 0 - var/autoadmin_rank = "Game Admin" + /datum/configuration/New() var/list/L = typesof(/datum/game_mode) - /datum/game_mode @@ -374,9 +378,9 @@ if("maprotationchancedelta") config.maprotatechancedelta = text2num(value) if("autoadmin") - config.autoadmin = 1 + protected_config.autoadmin = 1 if(value) - config.autoadmin_rank = ckeyEx(value) + protected_config.autoadmin_rank = ckeyEx(value) else diary << "Unknown setting in configuration: '[name]'" diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 61f1c05baa8..eaa3fb99501 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -107,11 +107,11 @@ var/next_external_rsc = 0 directory[ckey] = src //Admin Authorisation - if(config.autoadmin) + if(protected_config.autoadmin) if(!admin_datums[ckey]) var/datum/admin_rank/autorank for(var/datum/admin_rank/R in admin_ranks) - if(R.name == config.autoadmin_rank) + if(R.name == protected_config.autoadmin_rank) autorank = R break if(!autorank) diff --git a/code/world.dm b/code/world.dm index 690dafaee93..62242e11c86 100644 --- a/code/world.dm +++ b/code/world.dm @@ -190,6 +190,7 @@ var/global/list/map_transition_config = MAP_TRANSITION_CONFIG join_motd = file2text("config/motd.txt") /world/proc/load_configuration() + protected_config = new /datum/protected_configuration() config = new /datum/configuration() config.load("config/config.txt") config.load("config/game_options.txt","game_options") From 067292e9c8a26a1c17e9b66d7c3d80b62f438d47 Mon Sep 17 00:00:00 2001 From: oranges Date: Tue, 20 Oct 2015 14:54:42 +1300 Subject: [PATCH 11/25] Remove some more dead code --- code/_globalvars/unused.dm | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 code/_globalvars/unused.dm diff --git a/code/_globalvars/unused.dm b/code/_globalvars/unused.dm deleted file mode 100644 index 69d78b82785..00000000000 --- a/code/_globalvars/unused.dm +++ /dev/null @@ -1,37 +0,0 @@ -var/dna_ident = 1 // unused global variable -var/shuttle_z = 2 //unused, was written to by a shuttle landmark -var/list/reg_dna = list( ) // unused, was written to when making unique DNA - - /////////////// old events system global variables -var/eventchance = 3 //% per 5 mins -var/event = 0 -var/hadevent = 0 -var/blobevent = 0 - /////////////// -var/skipupdate = 0 -var/list/jobMax = list() -var/forceblob = 0 -var/shuttlecoming = 0 -var/datum/debug/debugobj - -var/list/liftable_structures = list( - /obj/machinery/autolathe, - /obj/machinery/constructable_frame, - /obj/machinery/hydroponics, - /obj/machinery/computer, - /obj/structure/optable, - /obj/structure/dispenser, - /obj/machinery/gibber, - /obj/machinery/microwave, - /obj/machinery/vending, - /obj/machinery/seed_extractor, - /obj/machinery/space_heater, - /obj/machinery/recharge_station, - /obj/machinery/flasher, - /obj/structure/stool, - /obj/structure/closet, - /obj/machinery/photocopier, - /obj/structure/filingcabinet, - /obj/structure/reagent_dispensers, - /obj/machinery/portable_atmospherics/canister - ) \ No newline at end of file From c0ebea1f23735c77bcc73378c9663a60bb6363a6 Mon Sep 17 00:00:00 2001 From: oranges Date: Tue, 20 Oct 2015 15:17:08 +1300 Subject: [PATCH 12/25] Readds the parasting as a meme for retardation affected mobs --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index b4f66fe3ccc..09a64efd524 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -84,7 +84,7 @@ if(4) emote("drool") if(5) - say(pick("REMOVE SINGULARITY", "INSTLL TEG", "TURBIN IS BEST ENGIENE", "SOLIRS CAN POWER THE HOLE STATION ANEWAY")) + say(pick("REMOVE SINGULARITY", "INSTLL TEG", "TURBIN IS BEST ENGIENE", "SOLIRS CAN POWER THE HOLE STATION ANEWAY", "parasteng was best")) /mob/living/carbon/human/handle_mutations_and_radiation() From ae9b3de7ad7c18e81d2ffd90120939e7126dde0d Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Mon, 19 Oct 2015 20:13:41 -0700 Subject: [PATCH 13/25] Fixes spiders locking up the MC with do_after's --- .../mob/living/simple_animal/hostile/giant_spider.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm index 62a34b75106..5be136047f6 100644 --- a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm @@ -114,11 +114,13 @@ //second, spin a sticky spiderweb on this tile var/obj/effect/spider/stickyweb/W = locate() in get_turf(src) if(!W) - Web() + spawn() + Web() else //third, lay an egg cluster there if(fed) - LayEggs() + spawn() + LayEggs() else //fourthly, cocoon any nearby items so those pesky pinkskins can't use them for(var/obj/O in can_see) @@ -136,7 +138,8 @@ else if(busy == MOVING_TO_TARGET && cocoon_target) if(get_dist(src, cocoon_target) <= 1) - Wrap() + spawn() + Wrap() else busy = 0 From c8333ac8ca9e120005a36a1cc47b18b1a3116704 Mon Sep 17 00:00:00 2001 From: kingofkosmos Date: Tue, 20 Oct 2015 06:23:10 +0300 Subject: [PATCH 14/25] Makes the photocopier look different from the librarian's scanner control interface. --- code/modules/paperwork/photocopier.dm | 6 +++--- icons/obj/library.dmi | Bin 22315 -> 25317 bytes 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index ee16c94ee28..99fcaf0a589 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -11,7 +11,7 @@ name = "photocopier" desc = "Used to copy important documents and anatomy studies." icon = 'icons/obj/library.dmi' - icon_state = "bigscanner" + icon_state = "photocopier" anchored = 1 density = 1 use_power = 1 @@ -228,7 +228,7 @@ copy = O O.loc = src user << "You insert [O] into [src]." - flick("bigscanner1", src) + flick("photocopier1", src) updateUsrDialog() else user << "There is already something in [src]!" @@ -240,7 +240,7 @@ photocopy = O O.loc = src user << "You insert [O] into [src]." - flick("bigscanner1", src) + flick("photocopier1", src) updateUsrDialog() else user << "There is already something in [src]!" diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi index e15935f6ff36d97831196179572eb042dcae3a55..30829ab1db1c561d4048bf12fe44033697004993 100644 GIT binary patch literal 25317 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 literal 22315 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 aivI&pQ*`#rIH^+r0000 Date: Tue, 20 Oct 2015 22:44:52 +1100 Subject: [PATCH 15/25] makes blue cherry more blue --- icons/obj/hydroponics/harvest.dmi | Bin 42555 -> 42536 bytes icons/obj/hydroponics/seeds.dmi | Bin 18359 -> 18326 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/hydroponics/harvest.dmi b/icons/obj/hydroponics/harvest.dmi index a6973c6bf1ef78c097e79debafbc5c41d9a4febe..99baa34e701c484eb10fbbcbf7f98e20a43b49a9 100644 GIT binary patch delta 7625 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�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 delta 7644 zcmV<29V6nX%mTa20~ml5_xm$56cy>q8ygZ3gbOdMf25%?nAJ8t6&^m^ z9_AJQgW~-yO~gXbyfXyA0sMEv z{X;r8{4M87=j5J-1IY{gpYJDMwdSI z;B`I!V-521tm)Z-f8Ym0%mHet-VY;Df)Q*UH%f5eCx>NQ9)m1PBe{e*q1tz>=PB-OvO!5JIr+^=7tl zix@kjoGWX;Ej|6gePZs^Zx8v{M8gZDSKhx!00LmeW`z~4%ekY{#Pv1 zLwAkXf3Z)@G*$nTfF1E_^!WBO7 z7|6dE!>cz;;rUm$@#qb10z2dU=Iw8p+U{jzf1Z}!+S*7k7^g89q_F|cJ*|>WZw3hl zq0t|tZt~-%oNVz3BmzmW>YG>MdK6&ko=-+o2)o46uiqgFAs9Ek3|zVme^le1xs$-gQUG=}1>h_*TFj6OyyIQ$^S7q+ zedBAu>n-9;dv-(LUJ?=#=ub(HX*kLqs9_bW$Ewd4>JLc2>vumAH+|_R<^pFjunShu z1H>(#yOxhV{A=<(>%_GCo}~V&`eO=uhAv;ZQed(2(qDfnp1=8K$(Y};QJ){_fBtN| zUC*se_fF(J{~j)$b_QD5LcX^WEo>p2O29q$i?Z(yJq2?|j-vmE=0Dvn?Q z&fm5pK085gXF)lZpLXid1KK;fe{ci~7&F6)>w~MZ{>!+eZi#T?qS`%~&g(ZKKQM*T z?=?{>m$LH#ceb1Br-p_&i8wSifIk?=AB;oX$+m{<7C!nZs^TcIBcf`*w=`9N1JtmJ zX=nLlbl6QE;5{$t%J0V>e$uQS460~xi+J*1zYtIU%iJ+}pTGNVQFYTze-zA`h0W{b z@|7$5&70YNrZ(QbOc<`uaDKB+KQ;Zn+wR2T(WshGszcBu&GzmUbbbKI2%4s$s)Ccx zC}zXiS2DgfkFUP={q!+;=JUVkcX|$*Ko|^yM(Asd{WFwV1Q`f^N-%nuy9R9?c6b{c zK^?HEz1B47j49|4bOZ}L0i03x0=jzkHCtZE|_e^cq;&KssfBkjTp#EbgS*`u% zM?!tU=bcszKz^wmEvzFYe_{n%*n-XOz+-os(vR7d`vlHnP~r$A6jfvY^9=%3G`A1i`DH3T^%<$H!_Gh6iqYPoUwhnkPH`G~(jPyh z?VMuTJG#=~e{1WoXB~b3ZrsSSjC%mT=LSmMCE0E=t!ehP(mSa|VtftMoay z=3?unAonjZ+5G_)rxkmigJdL$-Qz@&Q;3*`5CX{ve}#$N*o7VfhkL;HZe_-MlY7Eo zGgMdCF6B?1D&z?hgqSi#DU#&o5gh zso^kMB!U_Y4mfW{yU^qMF0MNx?f3w;KleO;c=ly19{tzP;?el^%|9aFTZt#n17MB= zj0YeY!D$tA#WbP`fg*IAr4lk0<i_V<)>Eb72il4TY;&K%nI8)AbD(ewpeE!rfI~*kdmA`bs8_J0tWp;1@@xiGZnX`&;7#{c&95 zp~zW;KNu$%G%vxNDWPa+iiX8v!D5$CBMR|w0#~_?21}J~3~JgsP$qGK9reR4^zApP08q$|n3W6`%Tyl=){ye;Wg7 zb^U5dmStq(xNzfg>%(6<>7gO*L-b($;77PN;AaOse{?C_3Wd9|L zg=92EBAP-|G-81`h28=X5{@D#H+|W>;>V3o*Xbc;7-;HV7zU>5FSpcP%Xwq}WE%Y1 zWSLMhNnQe=qa3(`rpSK{NU_(weX{N_p*A)<3W=?f#4$pT(n* zKd~b1`s7rCL}w>ae=C97Dn5DZz&9c|T+JRA6le;>130V@ii4tAu;rJdC>n%zANDp6 zisrr$`|?wF37bcEJ$>PKJlqZDzv@>@^XGg+$g&Kwj9wJckAqq81E};me`#olQ&a=N z2J~s;$hf~%4=)#LLM0JNl2_s++9Bg`+rcgoZH{p3(*DB>vZ?&M63zwQZ0dwD=+18p z%-E@i!5@40*VJFNz_j*VHXAWTFTVM@x+rn#E=N{X3T!q)$s_c-qQpqb z^Uz(=-|zadn05N8$f*QMe`_+G<8zl+@`q<%W_ncx&XOMc)fp5t%I!?ZRwwKQ(6J4K zMq5i0O0tVo-icU+z#87ezA@i8?DO!jz3CJ4hJI&{V@2yXJS_FC_L>R5wST)@G;B?9 z+Ds?G1{gmRf~}Akq1!S_=#@212<&b!VKDmC zxcb8^DOyi?+nF)c#4brh6or!RWs0VyVW?>uc{UqzDrIKZMpRR8x<%S}`!X@Ts)BrP zC2}f3)URK9`SFu$0Z4RqlAs5E*>r#LW*>nV*ewE!ry856h7KS5tFD$P9NKoX7n~nw zG81@xwe`;l?qBh;e{{#wmkFoKNn@k#{=BD+O#4Czl941OV+)CO$mEr|^-JM|(Em(U zG}Z|pzzkbP0mNf^vuW8Z7Lwf%bY!?Zm(7+r5ULj(RUt?z=8Q!>lKSMWE2WLMFB2u9 z5aSCA$@f;$-qe_W|GgHyFzU_E%NqPXS=B7mB!uIFNF<6#f5})~9+2BxOKm0Ei3f6vn2>f4vyD=AU^3!Pt@H{yM{ zcW%A(Zg*5U!<@T*_0#T9hzfVl!1v6;hAKpF0A_^17K??hc<$Lb!_kS!{}ri(OsaD) zZAIrx`zz;V{f9s20CPGl-F%~dZ?|MP!HVw>eu|h~X|>WEiBRlvrQvrhjRPEM?RA{3yS#FDW{xrI?@_4mDVnOQ3Boh8E$agCtT^*hBD_XPR`;*d^zQm)2Pxt%NB`ymMuD} zf1D;@G0IYL*Fg^H6M?E8D}+Q^)8Iu>=$vPELf+^^uN z9LwE5xK?B?AI(r4);K`J1sY+l;r23JUqPi6B`(FAXKzfJY81K=&r z$AI3PxnIHGyq|lPEfU{dxpvfj|Fe>qe_OlsMagi2ZSN=3%L^*?yJPeXi*q`*K+c)zWOm$qpi|`u)-t-}hMoq~W*xg)2lR{BlEM4o{h&Gv)_c zW=7lLkczFa9P+?3$x8L~I{Ys!e-!?g7LM5eFcWmf{6Nb_sy~@J<&+v?v1S5+og>=* zk#wJj3qP;ddt^F#5M}LlSa1IGKg3J>74H1pbCLnSUw!+J>0iV{884XAz%sy=>TLVS z_3R}Tz2>v!2-BgjaSzlyaJnbsNLADPUcKpV&;Xm<_0e}hbr)Cmnja}ge;5et6tBJd z-;|c02*AY`%^$Jz`?1F!6JMHlIZju}h_yLX`0d*I4t?{0NBUaetN?KN3s(rE$g%jo z&x(?XcJBP#bCU6%krx~e{A?2+6$OqeBFPpGHdXdqW7^3u%k|N>V&5Fk{&On6vr83y z;im)x%>Rj>>iOrgTn;ZuwG&NEe^I6>+BKAI_>Be)D+jpzg)78l|0Ev2 zbA$Ai<#R;mo)mX}?m5Z0BBU?;4#)kSsnv<%lQxKxPq>D0e`Rx!oCk=Cf0EFAq@+Dq zEH)zIZDegHR(BgA^=(4(b`;Bg$_mcpeH|wK$_}68~)7f1MuuY;#Ev)Ym=Su=h-@PK0I1 z&vz2m-XR%};c(@VRQHfC&PTQGCCNS{MZxZLl1#=?RTZ~o3Ua&wyQ7iL#18WE9E4>! z(_JUtu?)?TO^MZsyi(|h$`s~jI6%Ywb<3`H=^#WV6otYsesh)ox;6n)pa8EcX8_o8U_tWbn|4R#nr+bJ~7cpQ9 z(eM^#e!)B^*b;_`<0`pz%>!Ke{Pd65|DJV6LTznr#G*lj$ir^6p=stltVC5+%FB!K zx9%3+%1P4R5C6^9ZGWStW-`fSm|$?9C@LB!e*sihmeG9ReNlbF$wT^I+_P+vIP3gR zanG_vLKA||%=_vw2R}GO01gDd0^o*!?_|wMQ&5Lv;&JIA*>Q2C9pU`>FqhrIP~`4 ze|zdzV*0$r>HP>rp)6m2GFS>3WEnf5UY|)J13Dnf@^xTlL-vx2UJel8%JQXfiT>pW zxZ#EynBI8>cTM(TD=O`k2Q*`7OfLw=bO;s~<`F#b8r8LRMBe(gaLv3gEA6_AE7J~e z&pv%R*#2KM{vxV8z4L%(hQD%buc)o9f5KuLgGI`xsd*O#1=VIXhqrQy)Y{S@N=plA zZD|lTyNyYcs__&SQdA_dd-o2`IAa`5P1{8@8lpkk>2Zs;>@4L9?mRB9B%3f9FM5~oDtCbE_rMAV-t^*xBe&+@$8}I{goKY`rfA>M8 z%Y{%15f&Rrf=FU7LMbE=+Kt5?MmQoUw1YKBLJ6S~Af+TprVfzMT8MPH*zVJ}cR1}& zpSM_g@2Ovj^*>+Hv+q&4SBMMfPOv*4m>D8x3w{Q?>?IZ0ib`=$I0^TJlUQ@1#H?3m z0dUDBmr${$f;AUPxF?*HhF@mre{6=lpI#?5H+K(ukLlrXJoW+kc~OLvK=ZE}b_iy` z%UxVal}C4V6US9@?YRs3?f{b_L zWo3jyNkX9yIpvh|P5a`zU3NM;g1B4`LZRK1mR8~WU^@i`d2|Lk*!b6He?%bAP9V@l zS=q!P_v5=O*Gl2m{r%tvq~W)z{&jpl-%$%cI7k(E-^FvpiQUgS?dX0UYMIr_-i&9X z`o>n_D=gyrU*2oV4(Ct*k+8>SkzXXEr94Qs5JD*=DRq)cCUH8QsHp^b?tIi_0SUDg zEm20wwVCL9KN(h^*8hBkfB4?QO#l?Q!R0)(&&3n^G$KPw+3-W)fri2Kt@aKCJ0%!k z?S<1!JrR2il+J^ysxyhk@(H)Rf%~k7veNcI!(jSWdk2DDOBfn28~XA0`+cIhc?X)B z#8X&_&;+0nPsAxK^kTPn;Be%TN~Y)vwjj$+&N}OhSwG${{NV{ve_7?Gw6q#Yl5jXQ z91aIgS01}|ZAXqNl$YEsx*z}m0~bj|K~zuTK=U5`1CoUcE*M@#xNpwSP^RQ4@B?`9#ovf=;~l6eC@C3(%jF`GOyG1W2u-7) zpcIS6!tOm=iA7b;KKrYt9q*@p_n;^(wc&KRaX2i*!Ib*va?yF9m68)GvkpH)2ZP{nUEe@@=9yoKigF2;+l3Gk4u=IH zRAMoOwzd>ke_pwGM2`3K&;Lf)Y!0ke6_2NqbI-llly>_9a8v#3y~5s14L9r^l>p3i zf3KZT(GPfre5EC9D6*LD{*JT^2tp4C2UC0Za4a+6XK2x%cMJ-FBL%;{+V#6@#N;nM zYD!PJ#qrLj?*75GqUQ9o@caG1 zz+rD~Z7p40`pG_=oZqMfU|;tK^m2Z_(h`7U*7Xgf!Y2Jom*>($;elj?y~g} zW#<08UN5`0zC&L(2-z!mj5+`s?r$LY`ASRhRe4P-cpMEfKscCk;LGV~)eo;fy&T}ai|2@f?$_@eC;7dca>}Vk_bgi^Je6aqt*zzlH(uwvE7wYy z%YgLqY_xZz9bhj2c6JYXe&-mj>gJSFP9H7fQX1e)$Yov^oK5F9Y50CVumDW{x{H~k+BiB>mT$8V+p0000< KMNUMnLSTZv#UJ

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 JvNtAy{|{`~HJ<sP7jJP|+}$BiL5sV)OCV?< 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 mDLMu2V%qe=3TaFDvCOL;ioYiA-?- From 01878098d1ccab736653e6cad1933ded0bfaa186 Mon Sep 17 00:00:00 2001 From: Jordie Date: Tue, 20 Oct 2015 23:12:47 +1100 Subject: [PATCH 16/25] local narrate to all mobs --- code/modules/admin/verbs/randomverbs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 859cb12804e..18b04e6e779 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -97,7 +97,7 @@ var/msg = input("Message:", text("Enter the text you wish to appear to everyone within view:")) as text if (!msg) return - for(var/mob/living/M in view(range,A)) + for(var/mob/M in view(range,A)) M << msg log_admin("LocalNarrate: [key_name(usr)] at ([get_area(A)]): [msg]") @@ -909,4 +909,4 @@ var/list/datum/outfit/custom_outfits = list() //Admin created outfits "} - usr << browse(dat, "window=dressup;size=550x600") \ No newline at end of file + usr << browse(dat, "window=dressup;size=550x600") From 76dbbf42e7343506fcb3b329f86d84625773d8cb Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Tue, 20 Oct 2015 16:30:50 +0100 Subject: [PATCH 17/25] Fixes drone hats --- .../mob/living/simple_animal/friendly/drone/visuals_icons.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm b/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm index e1a4aa46aac..73943d4d952 100644 --- a/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm +++ b/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm @@ -78,7 +78,7 @@ head.screen_loc = ui_drone_head client.screen += head - var/image/head_overlay = head.build_worn_icon(state = icon_state, default_layer = DRONE_HEAD_LAYER, default_icon_file = 'icons/mob/head.dmi') + var/image/head_overlay = head.build_worn_icon(state = head.icon_state, default_layer = DRONE_HEAD_LAYER, default_icon_file = 'icons/mob/head.dmi') head_overlay.pixel_y += -15 drone_overlays[DRONE_HEAD_LAYER] = head_overlay @@ -161,4 +161,4 @@ /mob/living/simple_animal/drone/generateStaticOverlay() - return \ No newline at end of file + return From 1db3c0c18b8a8962421cc32f2336a80821301763 Mon Sep 17 00:00:00 2001 From: Incoming Date: Tue, 20 Oct 2015 15:52:38 -0400 Subject: [PATCH 18/25] Syndicate bomb payloads will now detonate if set on fire long enough. Note that the casings for the bombs is fireproof, so if you want to set fire to a bombcore you'll need to remove it from the case first. Fixes #12468 while I'm here to avoid another box pull --- code/game/machinery/syndicatebomb.dm | 5 +++++ .../structures/crates_lockers/closets/cardboardbox.dm | 1 + html/changelogs/incoming_booms.yml | 6 ++++++ 3 files changed, 12 insertions(+) create mode 100644 html/changelogs/incoming_booms.yml diff --git a/code/game/machinery/syndicatebomb.dm b/code/game/machinery/syndicatebomb.dm index 120a797fbae..27f2448de1a 100644 --- a/code/game/machinery/syndicatebomb.dm +++ b/code/game/machinery/syndicatebomb.dm @@ -182,11 +182,16 @@ item_state = "eshield0" w_class = 3 origin_tech = "syndicate=6;combat=5" + burn_state = 0 //Burnable (but the casing isn't) var/adminlog = null /obj/item/weapon/bombcore/ex_act(severity, target) //Little boom can chain a big boom src.detonate() +/obj/item/weapon/bombcore/burn() + src.detonate() + ..() + /obj/item/weapon/bombcore/proc/detonate() if(adminlog) message_admins(adminlog) diff --git a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm index 609ba076b93..5aa7838ee31 100644 --- a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm +++ b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm @@ -4,6 +4,7 @@ icon_state = "cardboard" health = 10 mob_storage_capacity = 1 + burn_state = 0 //Burnable burntime = 20 can_weld_shut = 0 cutting_tool = /obj/item/weapon/wirecutters diff --git a/html/changelogs/incoming_booms.yml b/html/changelogs/incoming_booms.yml new file mode 100644 index 00000000000..b1ade5bb082 --- /dev/null +++ b/html/changelogs/incoming_booms.yml @@ -0,0 +1,6 @@ + +author: Incoming5643 +delete-after: True + +changes: + - rscadd: "Syndicate bomb payloads will now detonate if set on fire long enough. Note that the casings for the bombs is fireproof, so if you want to set fire to a bombcore you'll need to remove it from the case first (cut all wires, then crowbar it out). A reassurance from our explosives department: it is, and always has been, impossible to detonate a syndicate bomb that isn't ticking with wirecutters alone." \ No newline at end of file From 245f574cabd9678555947d1f08d7d008c995fe16 Mon Sep 17 00:00:00 2001 From: oranges Date: Mon, 19 Oct 2015 10:44:48 +1300 Subject: [PATCH 19/25] Brings some sanity to do_after and do_mob cleans up progress bar handling and also reworks how the loops work to cut down on some of the copy pasta. --- code/__HELPERS/unsorted.dm | 73 ++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 34 deletions(-) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 2b697ec6c3e..9f9413ac310 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -683,23 +683,23 @@ Turf and target are seperate in case you want to teleport some distance from a t var/holding = user.get_active_hand() var/timefraction = round(time/numticks) var/image/progbar + var/continue_looping = 1 for(var/i = 1 to numticks) if(user.client && progress) progbar = make_progress_bar(i, numticks, target) - user.client.images |= progbar + assign_progress_bar(user, progbar) sleep(timefraction) if(!user || !target) - if(user && user.client) - user.client.images -= progbar + continue_looping = 0 + + if (continue_looping && !uninterruptible && (user.loc != user_loc || target.loc != target_loc || user.get_active_hand() != holding || user.incapacitated() || user.lying )) + continue_looping = 0 + + cancel_progress_bar(user, progbar)//Clear the way for the next progbar image + if(!continue_looping) return 0 - if (!uninterruptible && (user.loc != user_loc || target.loc != target_loc || user.get_active_hand() != holding || user.incapacitated() || user.lying )) - if(user && user.client) - user.client.images -= progbar - return 0 - if(user && user.client) - user.client.images -= progbar - if(user && user.client) - user.client.images -= progbar + + cancel_progress_bar(user, progbar) return 1 /proc/make_progress_bar(current_number, goal_number, atom/target) @@ -709,6 +709,14 @@ Turf and target are seperate in case you want to teleport some distance from a t progbar.icon_state = "prog_bar_[round(((current_number / goal_number) * 100), 10)]" progbar.pixel_y = 32 return progbar + +/proc/cancel_progress_bar(mob/user, image/progbar) + if(user && user.client && progbar) + user.client.images -= progbar + +/proc/assign_progress_bar(mob/user, image/progbar) + if(user && user.client && progbar) + user.client.images |= progbar /proc/do_after(mob/user, delay, numticks = 5, needhand = 1, atom/target = null, progress = 1) if(!user) @@ -722,46 +730,43 @@ Turf and target are seperate in case you want to teleport some distance from a t Tloc = target.loc var/delayfraction = round(delay/numticks) + var/atom/Uloc = user.loc + var/holding = user.get_active_hand() var/holdingnull = 1 //User is not holding anything if(holding) holdingnull = 0 //User is holding a tool of some kind + var/image/progbar + + var/continue_looping = 1 for (var/i = 1 to numticks) if(user.client && progress) progbar = make_progress_bar(i, numticks, target) - if(progbar) - user.client.images |= progbar + assign_progress_bar(user, progbar) + sleep(delayfraction) if(!user || user.stat || user.weakened || user.stunned || !(user.loc == Uloc)) - if(user && user.client && progbar) - user.client.images -= progbar - return 0 + continue_looping = 0 - if(Tloc && (!target || Tloc != target.loc)) //Tloc not set when we don't want to track target - if(user && user.client && progbar) - user.client.images -= progbar - return 0 // Target no longer exists or has moved + if(continue_looping && Tloc && (!target || Tloc != target.loc)) //Tloc not set when we don't want to track target + continue_looping = 0 - if(needhand) + if(continue_looping && needhand) //This might seem like an odd check, but you can still need a hand even when it's empty //i.e the hand is used to insert some item/tool into the construction if(!holdingnull) if(!holding) - if(user && user.client && progbar) - user.client.images -= progbar - return 0 - if(user.get_active_hand() != holding) - if(user && user.client && progbar) - user.client.images -= progbar - return 0 - if(user && user.client && progbar) - user.client.images -= progbar - if(user && user.client && progbar) - user.client.images -= progbar - if(user && user.client && progbar) - user.client.images -= progbar + continue_looping = 0 + if(continue_looping && user.get_active_hand() != holding) + continue_looping = 0 + + cancel_progress_bar(user, progbar)//Clear the way for the next progbar image + if(!continue_looping) + return 0 + + cancel_progress_bar(user,progbar) return 1 //Takes: Anything that could possibly have variables and a varname to check. From aea1ae0cd1eee4fb483201abee489639ab70c0b1 Mon Sep 17 00:00:00 2001 From: Strathcona Date: Tue, 20 Oct 2015 17:13:32 -0400 Subject: [PATCH 20/25] Cameras, pipes, wires. --- _maps/map_files/DiscStation/DiscStation.dmm | 105 +++++++++++--------- 1 file changed, 56 insertions(+), 49 deletions(-) diff --git a/_maps/map_files/DiscStation/DiscStation.dmm b/_maps/map_files/DiscStation/DiscStation.dmm index dad08217837..5e714af43b8 100644 --- a/_maps/map_files/DiscStation/DiscStation.dmm +++ b/_maps/map_files/DiscStation/DiscStation.dmm @@ -1634,7 +1634,7 @@ "aFv" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (NORTH)"; icon_state = "warnwhitecorner"; dir = 1},/area/medical/genetics_cloning) "aFw" = (/turf/simulated/wall,/area/medical/cryo) "aFx" = (/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 2; network = list("SS13")},/obj/structure/table,/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aFy" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/wall,/area/maintenance/fpmaint) +"aFy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation C"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "aFz" = (/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "aFA" = (/obj/structure/sign/examroom,/turf/simulated/wall,/area/security/checkpoint/medical) "aFB" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/checkpoint/medical) @@ -2401,10 +2401,10 @@ "aUi" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/destTagger,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)"; icon_state = "brown"; dir = 9},/area/quartermaster/qm) "aUj" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) "aUk" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUl" = (/obj/machinery/camera/autoname{dir = 2; network = list("SS13")},/obj/machinery/hologram/holopad,/obj/machinery/power/apc{dir = 1; name = "Quartermaster's Office APC"; pixel_x = 0; pixel_y = 30},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/quartermaster/qm) -"aUo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/qm) +"aUl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aUm" = (/obj/machinery/camera/autoname{dir = 2; network = list("SS13")},/obj/machinery/hologram/holopad,/obj/machinery/power/apc{dir = 1; name = "Quartermaster's Office APC"; pixel_x = 0; pixel_y = 30},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) +"aUn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/quartermaster/qm) +"aUo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) "aUp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "aUq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "aUr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) @@ -2490,7 +2490,7 @@ "aVT" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aVU" = (/obj/effect/landmark{name = "Nuclear-Bomb"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aVV" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) +"aVW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/quartermaster/qm) "aVX" = (/obj/structure/optable,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aVY" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/robot_parts/l_arm,/obj/item/robot_parts/r_arm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aVZ" = (/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -2607,7 +2607,7 @@ "aYg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) "aYh" = (/obj/structure/computerframe,/obj/item/weapon/paper{info = "

Teleporter Instruction


  1. Install circuit board, glass and wiring to complete Teleporter Control Console
  2. Use a screwdriver, wirecutter and screwdriver again on the Teleporter Station to connect it
  3. Set destination with Teleporter Control Computer
  4. Activate Teleporter Hub with Teleporter Station
"; name = "Teleporter Instructions"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aYi" = (/obj/machinery/teleport/hub/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aYj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) +"aYj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) "aYk" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/syndicate) "aYl" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/floor/plating,/area/shuttle/syndicate) "aYm" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/floor/plating,/area/shuttle/syndicate) @@ -2676,7 +2676,7 @@ "aZx" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery) "aZy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) "aZz" = (/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"aZA" = (/obj/machinery/light_switch{pixel_y = 23},/obj/item/device/radio/intercom{pixel_x = 30},/obj/machinery/camera{c_tag = "Cafe North"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"aZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral,/area/bridge) "aZB" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/secure) "aZC" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/turf/simulated/floor/plating,/area/storage/secure) "aZD" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/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/crystal,/turf/simulated/floor/plating,/area/storage/secure) @@ -3081,8 +3081,8 @@ "bhm" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bhn" = (/obj/structure/table/wood,/obj/item/weapon/coin/plasma,/obj/item/weapon/hand_tele,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bho" = (/obj/structure/table/wood,/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bhp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bhq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bhp" = (/obj/machinery/light_switch{pixel_y = 23},/obj/item/device/radio/intercom{pixel_x = 30},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bhq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) "bhr" = (/turf/simulated/wall/r_wall,/area/teleporter) "bhs" = (/turf/simulated/wall,/area/teleporter) "bht" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) @@ -3485,7 +3485,7 @@ "bpa" = (/obj/machinery/light{dir = 1},/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) "bpb" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) "bpc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bpd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation C"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"bpd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/neutral,/area/bridge) "bpe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bpf" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) "bpg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) @@ -3571,8 +3571,8 @@ "bqI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) "bqJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "bqK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bqL" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bqM" = (/obj/structure/closet/secure_closet/detective,/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bqL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) +"bqM" = (/obj/structure/closet/secure_closet/detective,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "bqN" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detective's camera"; pictures_left = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "bqO" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/item/device/taperecorder{pixel_x = 3; pixel_y = 0},/obj/item/weapon/storage/box/evidence,/obj/item/device/flashlight/seclite,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "bqP" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-SW-SE"; tag = "icon-E-SW-NW"},/turf/space,/area/space) @@ -3754,7 +3754,7 @@ "buj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "buk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/courtroom) "bul" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/port) -"bum" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bum" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "bun" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "buo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "bup" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) @@ -4376,7 +4376,7 @@ "bGh" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) "bGi" = (/obj/item/seeds/wheatseed,/obj/item/seeds/sugarcaneseed,/obj/item/seeds/potatoseed,/obj/item/seeds/appleseed,/obj/item/weapon/grown/corncob,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Botany North"},/turf/simulated/floor/plasteel,/area/hydroponics) "bGj" = (/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bGk" = (/turf/simulated/floor/plasteel,/area) +"bGk" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bGl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) "bGm" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) "bGn" = (/obj/structure/table,/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) @@ -4439,7 +4439,7 @@ "bHs" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/hydroponics) "bHt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 8; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/machinery/door/poddoor/shutters/preopen{id = "HydroShutters"; name = "Hydroponics Shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"; tag = "icon-whitehall (WEST)"},/area/hydroponics) "bHu" = (/turf/simulated/floor/plasteel,/area/crew_quarters/bar) -"bHv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/chem_master{pixel_x = -2},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) +"bHv" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/space) "bHw" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) "bHx" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plating/airless,/area/space) "bHy" = (/obj/structure/transit_tube{tag = "icon-S-NW"; icon_state = "S-NW"},/turf/space,/area/space) @@ -5041,7 +5041,7 @@ "bSW" = (/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) "bSX" = (/turf/simulated/wall,/area/maintenance/apmaint) "bSY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bSZ" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/space) "bTa" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "bTb" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) "bTc" = (/obj/structure/flora/kirbyplants{layer = 4.1},/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) @@ -5386,7 +5386,7 @@ "bZD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/brig) "bZE" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) "bZF" = (/turf/simulated/wall/r_wall,/area/security/warden) -"bZG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) +"bZG" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/escape) "bZH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) "bZI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) "bZJ" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_access = null; req_access_txt = "58"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/security/main) @@ -5465,7 +5465,7 @@ "cbe" = (/turf/simulated/wall/r_wall,/area/ai_monitored/security/armory) "cbf" = (/obj/machinery/deployable/barrier,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) "cbg" = (/obj/machinery/deployable/barrier,/obj/machinery/alarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cbh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cbh" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/space) "cbi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "cbj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/hos) "cbk" = (/obj/structure/bed/chair,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) @@ -5602,7 +5602,7 @@ "cdL" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/storage/tech) "cdM" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) "cdN" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = 26},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "Tech Storage"},/turf/simulated/floor/plating,/area/storage/tech) -"cdO" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/camera/autoname{dir = 1},/obj/machinery/power/apc{dir = 1; name = "Tech Storage APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/storage/tech) +"cdO" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "cdP" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/storage/tech) "cdQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/tech) "cdR" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/locker) @@ -6235,7 +6235,7 @@ "cpU" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/engine/engine_smes) "cpV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cpW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/asmaint) -"cpX" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Aft Starboard Solar"; dir = 2; network = list("SS13")},/turf/space,/area/solar/starboard) +"cpX" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/space) "cpY" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) "cpZ" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs/cable/white,/obj/item/weapon/gun/syringe,/turf/simulated/floor/plating,/area/maintenance/apmaint) "cqa" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosiavulgarisseed,/turf/simulated/floor/plasteel/black,/area/security/prison) @@ -6959,7 +6959,7 @@ "cDQ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cDR" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) "cDS" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/atmos) -"cDT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/space) +"cDT" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/space) "cDU" = (/obj/machinery/computer/slot_machine,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) "cDV" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cDW" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/retractor{pixel_x = 4},/obj/item/weapon/hemostat{pixel_x = -4},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) @@ -6984,6 +6984,13 @@ "cEp" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) "cEq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) "cEr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/hallway/primary/aft) +"cEs" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/space) +"cEt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) +"cEu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"cEv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) +"cEw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cEx" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/power/apc{dir = 1; name = "Tech Storage APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/storage/tech) +"cEy" = (/obj/machinery/camera{c_tag = "Aft Starboard Solar"; dir = 2; network = list("SS13")},/turf/space,/area/space) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7084,17 +7091,17 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHahcahcahcafHafHaBQawpawUbapbgSbgTbgUaylbgWbfUayJaBSaSwaBOaBUaBTaBWaBVaSwaugasSasSauhavqalIawwaxNaxOavTavTayoavuavuaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiDaaaaaaaagaaaaaaaaaaaaaaaaaaaagavvaaQaaQavvaaQaaQaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwavwavZavZavYavYavZavwawaawaawaawaawaaaAaaAaqCaddaypayqayraysaytayuayvaywayxayyayzavAapdaotanaawlayAbHzayCayDayEayFayGawPawPawPawQayHaeCadSabJabJabJabpabJayIablaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHafHaBQawpawUbapaWCaWCaWCaBXaBYbrSaCaaBZaSwaCbaPeaCNaCQaCPaSwayTasSasSauhavqalIawwayUaxOavTavTayoavXaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaiDaiDaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaEaaFayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwavZavZavZavZavYavZavwawaawaawaawaawaaddacybHAaddaqDaddasUayWayXayYayYayZavAavAavAavAazaapZanaawlawlawlawlawlawlawQawQawQawQawQawQabkazbaxyazcaetabJabpabJabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRafHaCTaCSaAYaCUaCVawpawUbapbiXbiYbiZaAebjbbfUaBiaCXaSwaCYaUDaCNaDaaCZaSwaugasSasSauhavqalIawwaznaxOavTavTayoavXaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaiDaiDaagaagaagamHaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamHaagaagaagaagaagaagazoazpaeiazqazraagaagaagaagaagaagaagaagaagaagaagaagaagaagakCaagavwavwavwavwazsavwavwavwaztazuazuazuazvazwazxbHBauqazzaddazAazBazCazDazEazFazGazHazIazJazKapZanaazLazMazMazNazOazPazQazRazSazTazUazVazWaeCazXadsabJabJabJabJablaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRagvaDMaDbaDObHCaDPaAXaBaaAZaBcaBbbpdaylbpebeFayJaDQaSwaDRaDTaDSaDWaDUaSwaugasSasSauhavqalIawwawxavTavTayoayoavXaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaiDaiDaiDaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaalUaxPaAoahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwaApaApaApaApaApaApavwaAqawaawaawaaAraddacybHDaddaAtaAuaAuaAvaAwaAxaAyaAzaAAaABaACaADaADaAEaAFaAGaAHaAIazMaAJazMazMazMazMaAKazMaALazWaeCadSabJaAMaANabJabpabpaagaAOaAOaAOaAOaAOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRagvaDMaDbaDObHCaDPaAXaBaaAZaBcaBbaFyaylbpebeFayJaDQaSwaDRaDTaDSaDWaDUaSwaugasSasSauhavqalIawwawxavTavTayoayoavXaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaiDaiDaiDaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaalUaxPaAoahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwaApaApaApaApaApaApavwaAqawaawaawaaAraddacybHDaddaAtaAuaAuaAvaAwaAxaAyaAzaAAaABaACaADaADaAEaAFaAGaAHaAIazMaAJazMazMazMazMaAKazMaALazWaeCadSabJaAMaANabJabpabpaagaAOaAOaAOaAOaAOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaExaCUaDPaEzaCVafHahcaStawUbapbgSbgTbgUaEAaECaEBaEEaEDaSwaSwaSwaEFaEGaSwaSwaugasSasSauhavqalIawwawxavuavuavuavuavuaaaaaaaaaaaaaaaaaaaaaavuavuawyavuavuaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaalUaxPaeMaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwavwaApaApaApaApaApavwaAqawaawaawaaAraaAaaAaAsaddaBnaddaBoaBpazCaBqaBraBsaBtamoaBuanIaBvaBwavdaBxaByaBzaBAaBBaBCaBAaBAaBAaBDaBAaBAaBEaBFaBGaBHaBHaBHaBIaBJaagaagaBKaBLaBMaBMaBNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRafHafHafHafHafHahcaEHawUaEIaEIaEIaEIaEIaEIbapaEJbapaSwbHEaFvaCNaCQaFxaSwaugasSasSauhawvalIaCgawxavTaChaCiavTavuavXavuavuavXavuavuavXavuaCjavTaxeavuaaaaaaaaaaaaaaaaAOaCkaAOaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaaaavwaApaApaClaApaCmaCnaCoaCpaCpaCpaCqaaAbImaAsaddaBnaddaruazCazCaCraCraCraCsamoaCtamoamoamoamoaCuaCvaCwaCxaCyaCzaCAaCBaCwaCwaCwaCwaCCaCDaiqaCEaiqadUadValFaaaaaaaCFaCGaCHaCIaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHazYazZaAaaFyahcawpawUaEIaFzaKYaKZaLaaEIaGiaGvbasaSwaPdaGwaCNaCQaGxaSwaugasSasSauhavqalIawwaDgaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDiavTavuaaaaaaaaaaaaaDjaDkbIMaDmaDnaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaoTaagaagavwavwaDoaDpaApaDqavwawaawaawaawaavwaaAaaAaDraddaBnaddaruaDsaDtaDuaDvaDwaDxaDyaDzaDAaDBazMaDCazMaDDazMaCuaCuaCuaCuaCuaDEaDFaDFaDGaDHazWazWazWazWazWaeCalFaaaaaaaBKaDIaBKaBKaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHazYazZaAaafHahcawpawUaEIaFzaKYaKZaLaaEIaGiaGvbasaSwaPdaGwaCNaCQaGxaSwaugasSasSauhavqalIawwaDgaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDiavTavuaaaaaaaaaaaaaDjaDkbIMaDmaDnaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaoTaagaagavwavwaDoaDpaApaDqavwawaawaawaawaavwaaAaaAaDraddaBnaddaruaDsaDtaDuaDvaDwaDxaDyaDzaDAaDBazMaDCazMaDDazMaCuaCuaCuaCuaCuaDEaDFaDFaDGaDHazWazWazWazWazWaeCalFaaaaaaaBKaDIaBKaBKaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvaAPaAQaARaAQaASahcawpawUaEIaLMaLNaMoaMoaEIaGyayJaGzaSwaPSaGwaGAaGCaGBaSwaEaasSasSauhavqalIawwawxaCiaChaChavuavuavXavuavuavXavuavuavXavuavTawxavTavuaaaaaaaAOaEbaEcavTavTavTaEdaDnaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaAOaAOaAOaaaaaaaaaaaaahkaaaaaaaaaavwavwaEeaApaDqavwawaawaawaavwavwaagacyaAsaddaBnaddaruaDsaEfaEgaEhaEhaEiaEjaEkaDAbIObINbINbINbIQbIPaCuaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaeCalFaaaaBKbIRaEuaEvaEwaBKaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagafHafHafHafHafHafHahcawpawUaEIaGDaMoaMoaGEaEIaGFaHEbcDaSwaRkaHGaHFaHIaHHaSwaugasSasSauhavqalIawwawxavuavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaavuavuaENavuavuaaaaEOaEPaEQaDhaERaESavTavTawyalOalOalOalOalOalOalOalOalOalOalOalOalOalOalOaaEaaFayVaETaoiaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaDjaEUbISaEWaDnaaaaaaaaaahkaaaaaaaaaaaaavwavwavwaDqavwawaavwavwavwaaaaagacyaEXaEYaBnaddaruaDsaEZaFaaFbaFcaFcaFdbITaDAbIVbIUbJRbJCbJTbJSaCuaEtaEtaEtaFlaFmazMazMazMaFnaFoaEtbMKaEtazWaeCalFabpabpaFpaFqaFraEuaEwaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvahcaAQaCKaAQamrahcawpaHJaEIaHLaHKaMoaIkaEIbapaIlbapaSwaSwaxEaImaInaSwaSwayTasSasSauhavqalIawwawxaFCaFDavuaagaaaavuavuavuavuaagaagaagaagaFEaFFaFGaCkaCkaFHaFIaFJaFKaFLaDiavTaFMaFNaagaagaagaagaagaagaagaagaagaagaagaagaagaagaFOazpaeiazqaFPaagaagaagaagaagaagaagaagaagaagaagaagaagaagaFHaFQaFRaFRaFRaFSaFGaCkaFTaFUaFVaCkaFWaFWaFWaFWavwaFXavwavwavwaagaagaagaagacyaFYaAsaBnaddaFZaGaaGbaGcaGdaGeaGfaGfaGgaDsbNGaIpaGjaIHaIHbNGazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaGnaGoaGpabpaGqaGraGsaGtaGuaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJbOVaaaaaaaaaaaaaaaaaabNJbQsbQrbQrbQrbQrbQrbQrbQtbOVaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHaDJaDKaDLafHahcaEHawUaEIaIJaIIaJcaJbaJeaJdaJgaJfaJfaJkaJfaJGaJIaJHalIaxCasSaGGaGHaGIaGJaGKaGLavTaGMavuavuavuavuaGNaGOavXaaaaaaaaaaaaaEOaGPaGQaGQaGQaGQaGRaGSaGTaGUawxaGVaGWaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaalUaETaAoahLapJalOalOalOalOalOalOalOalOalOalOalOalOalOalOalOaGXaFRaFRaGYaGZaHaaHbaHcaHdaHeaHfaHgaHhaHhaHhaHhaHhaHiaGSaaaaaaaaaaaaaagaaaacyaHjaHkaHladdaFZaHmaHnaGcaHoaHpaHqaHqaHraDsaEtbRmaEtaEtaEtaEtazWaCuaCuaCuaCuaHtaHuazMaHvaHtaCuaCuaCuaCuazWaHwaHxaHyaHzaHAaHBaEuaHCaHDaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSJbTVbOVaaaaaaaaaaaabNJbTZbUabUabUcbUbbUabUabUabUabUdaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHafHafHahcawpawUaEIaJSaJRaJUaJTaKoaKnaKqaKpaKraKraKraKtaDVaKuaKzaxCasSaukaHMaHNalIawwawxavTavTaCiavTavTavTavTavTavXaaaaaaaaaaaaaaaaHOaHOaHOaHPaHOaHOaaaaaaaHQaENaGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaHQaHRaFRaHSaHTaHUaHVaHOaeNaHWapJaHOaHOaHOaHOaHOaHOaHOaaaaaaaaaaaaaagaagaagacyaHXaAsaHYayqaHZaIaaIbaGcaGdaIcaIdaIdaIeaDsaEtaEtaEtaEtaEtaEtazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIfaIgadSabpaBKaIhaIiaIiaIjaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBbUfbOVaaaaaabNJchtbTZbUabUabUabUabUabUabUacmicyQbQrbOVaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaafHahcawpawUaEIaKAaKAaKFaKBaEIaEIaLbaKXaLdaLcaLeaLeaLhaLgalIaxCasSaIqaHMaIralIawwaFLaDiaChaLlaLlaLlaLlavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaGTaIsaHSaItaGWaaaaaaaaaahkaaaaaaaaaaaabdibdibdiaIuaIuaIuaIuaLmaLmaaaaagacyaIvaIwaIxaddasUaDsaIyaIzaIAaIcaIBaICaIDaDsaEtaEtaEtaEtaEtaEtazWaEtaIEaEtaIFaFmazMazMazMaFnaIGaEtaIEaEtazWaeCabpadSabpaBKaFsaFsaFsaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRbUfbOVbNJchtcySbUdcyTbUabUabUabUabUabUabUacyVcyUcyWaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagafHafHawpawUaueaLnaJfaJGaLoaLpaJfaLraKXaLtaueaueaueaueauealIaugasSasSaHMaIKalIaILavTawxaIMaJjaLLaLKaJjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaHQaINaGWaaaaaaaaaaaaahkaaaaaaaaabdibdibdibdiaIuaIuaIuaIuaIuaLmaLOaLmaIOaqCaddaIPaIQaruaDsaIRaGcaGdaIcaISaITaIUaDsaEtaEtaIVaEtaEtaEtazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaIWabpaIXabpaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQbTVcySbUabUdcyTbUabUabUabUabUacyXchtbQrbTVcyYbOVaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaafHahcawpawUaEIaKAaKAaKFaKBaEIaEIaLbaUlaLdaLcaLeaLeaLhaLgalIaxCasSaIqaHMaIralIawwaFLaDiaChaLlaLlaLlaLlavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaGTaIsaHSaItaGWaaaaaaaaaahkaaaaaaaaaaaabdibdibdiaIuaIuaIuaIuaLmaLmaaaaagacyaIvaIwaIxaddasUaDsaIyaIzaIAaIcaIBaICaIDaDsaEtaEtaEtaEtaEtaEtazWaEtaIEaEtaIFaFmazMazMazMaFnaIGaEtaIEaEtazWaeCabpadSabpaBKaFsaFsaFsaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRbUfbOVbNJchtcySbUdcyTbUabUabUabUabUabUabUacyVcyUcyWaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagafHafHawpawUaueaLnaJfaJGaLoaLpaJfaLraUlaLtaueaueaueaueauealIaugasSasSaHMaIKalIaILavTawxaIMaJjaLLaLKaJjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaHQaINaGWaaaaaaaaaaaaahkaaaaaaaaabdibdibdibdiaIuaIuaIuaIuaIuaLmaLOaLmaIOaqCaddaIPaIQaruaDsaIRaGcaGdaIcaISaITaIUaDsaEtaEtaIVaEtaEtaEtazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaIWabpaIXabpaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQbTVcySbUabUdcyTbUabUabUabUabUacyXchtbQrbTVcyYbOVaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHaagaagaszaIZaJaaueaLPavnaLRaLQaLSaKraLVaLTaLYaWKaMaaLZaPYaPZalIaugasSasSaJhaJialIawwavTawxaJjaJjaMeaMbaJjaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaFEaJlaJmaagaagaagaagaoTaagaagaagbdibdiaMnaMmaJoaJpaJVaIuaIuaLmaLOaLmaIOaqCaJqaJraJsaruaJtaJuaJvaJwaJxaJxaJxaJxaJtazWaJyaJzaJzaJAazWazWaCuaCuaCuaCuaHtaJBazMaJCaHtaCuaCuaCuaCuazWaeCabpaJDabpabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZbQrczacyRczbbUaczcbUacyQczeczdbUabUabUacyXchtcySczfczfczgbTZaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaagvanXafHafHafHawpaJEaJFaueaMpavnaMraMqaDVavMavMavMaMtaMsaMvaMuaMCaRualIaugasSasSaJKaJLalIaJMaJNaJOaJjaJPaJQaMDaJjaMEaMGaMFaMlaMlaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaabdibdiaMnbPLaJVaJoaJVaIuaIuaLmaLOaLmaIuaqCaJqaJXaJsaruaJtaJYaJZaKaaKbaKbaKcaKdaJtaKeaKfaKgaKhaKiczhazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIWabpadSaKkabJabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJchtbQrbTZbUabUabUaczgbTVbQrbQrbQtcyYchtcySbUaczicziczjbUdaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvagvahcahcahcahcaKlaKmaMJaueaMKavnaMPaMOaMSaMQaNkaNjaNlaueaNnaNmaNoaRualIayTasSasSauhavqalIaKvavTawxaJjaKwaKxaKyaJjaNsaNxaNxaNyaMlaMlaaaaaaaaaaaaaaaaagaagaagaagaagaKCaFFaKDaagaagaagaagaagaagaagazoazpaeiazqazraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamHaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaabdibdiaMnaNzaKEaJnaJVaIuaIuaLmaLOaLmaIuavyaJqaKGaJsaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaKNabJaKOaKPaKQazWaEtaEtaEtaKRaFmazMazMazMaFnaKSaEtaEtaEtazWaeCabJadSabpabpabpaagaagaaaabpabpablabpabpaaFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJcyYbTVcySbUabUdbUabUabUabUabUabUabUabUaczgbTZbUabUabUabUabUaczkaaaaaaaaaaaa @@ -7107,60 +7114,60 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaCSahMaySafHarjaWEaWFaRjaueaPsaPtaWKaWGaPuaLtbgZaWIaWHaXIaWJbhUaXJbhWbhXalIaQaaugasSauhaQbaQcaQdaQeaQfaQgaQhaQiaQjaMyaXKaXMaXLaOhaXNaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaQoaGSalUaxPaoiaaaaaaaaaaaaaaaaaaaagaaaaaaaNCaQpaPxaRHaRHaRIaRJaRKaRHaRHaPzaQxaNCaaaaaaaagaaaaaaaaaaaaaEOaQyaFRaFRaFRaQzaQAaNGaGSaaaaaaaaaahkaaaaaaaaaaPGaQBaQCaQDaQEczPaQGaQHaQIaQJaQKaXOaXPaMRaQNaQOaQPaQPaQQaQRaQSaQTaQPaQPaQPaQUaQVaQWaQXaQYaQZaRaaPLaRbaRcaRdaReaRfaPMabpabpabpabpabpaiDaiDaagabWamBaagaagaagabpaRgabpaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKchtbQrbTZbUabUabUabUabUabUabUabUabUabUdczrbUabUabUabUabUdaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbahcaXQafHaStaSuaXRaSvaueaRnavnbbvaXSaVFaLtbgZaYIaWHaXIaYJbjibjibjibjjalIczQaugaRwaRxaRyaOmaRzaRAaRBaMyaRCaRDaREaMyaPUaPVaPVaPXaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaalOaRFaRGayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaagaaacztaNCaSLaSMaSNaSOaSPaSQaSRaSSaSTaSUaSVaNCcztaaaaagaaaaaaaaaaaaaaaaGTaRLaRMaRNaGWaDjaNGaGSaaaaaaaaaahkaaaaaaaaaaPGaROaRPaRQaRRaRSaRSaRTaRUaQFaRVaRWaPGaRXaRYaRZaRZaRZaSaaSaaSbaScaSdaSdaSdaSeaezaSfaSgaShaSiaSjaSkaSlaSmaSnaSoaSpaPMaaQamBaaaaSqaSraSraSraSsabWamBaaaaaaaagalOalOalOaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSJbQrczRcyRczbbUabUabUabUabUabUaczcbUaczSbUdczrbUaczTbUacyXbTZaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHaYKaAUaAVaYMaYLaYOaYNaCUaCUaZraZqaMPaTDaZsaMOaZtbgZaZvaZuaZxaZwaZHbkgaZIbkhalIaSBaSCaSDaSEavqaOmaOnaOoaOpaMyaMyaSFaSGaMybahbajbaiaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaalOaFOaSKaeiazqazraagaagaagaagaagaagaagaagaagaaaaNCaTOczUaRHaTRaRHczWczVaRHaRHaTVaRHczXaTXaNCaaaaagaaaaaaaaaaaaaaaaaaaHOaHOaHOaEOaSWaSXaGSaaaaaaaaaahkaaaaaaaaaaPGaSYaSZaTaaTbaTcaTdaTeaTeaTeaTfaTgbakaTiaTjaTkauZaEYaBnaBnaTlaTmaaAaTnaTnaTnaTnaTnaTnaTnaPMaPMaPMaToaTpaTqaSoaTraPMaTsaTsaPMaTtaTuaTvaTuaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQcyYcyYcyYbQtbQrbQrczkczkczkbTVbQrczeczYcyXchtczLaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagafHahcbalaBRbanbambaqbaobatbarbbmbauaFwaFwbbnaVFaLtbgZbboaWHaXIbbpbbrbbqbbsbltalIatwaTGasSauhavqalIawwavTaTHaTIaTJaTKaTLaTIaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaETaTMaTNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaNCczZaTPaTQaTQaTQaTScAaaTQaTQaTQaTQaTWczZaNCaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFNaagaagaagaagaoTaagaagaagaPGaTYcAbaUabbtaUcaQFaQFaQFaQFaQFaUdaPGaUeaUfaUgbImaAsaBnaBnaTlaUhaaAaUiaUjaUkaUlaUmaUnaUoaUpaUqaUqaUraUsaUtaUuaUvaTsaUwaUxaTsaTtaUyaUzaUAaTtaiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcAcczLczKchtbTZbUabUabUacAdbUabUabUabUaczgcyYchtczLaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagafHahcbalaBRbanbambaqbaobatbarbbmbauaFwaFwbbnaVFaLtbgZbboaWHaXIbbpbbrbbqbbsbltalIatwaTGasSauhavqalIawwavTaTHaTIaTJaTKaTLaTIaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaETaTMaTNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaNCczZaTPaTQaTQaTQaTScAaaTQaTQaTQaTQaTWczZaNCaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFNaagaagaagaagaoTaagaagaagaPGaTYcAbaUabbtaUcaQFaQFaQFaQFaQFaUdaPGaUeaUfaUgbImaAsaBnaBnaTlaUhaaAaUiaUjaUkaUmaUoaUnaVWaUpaUqaUqaUraUsaUtaUuaUvaTsaUwaUxaTsaTtaUyaUzaUAaTtaiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcAcczLczKchtbTZbUabUabUacAdbUabUabUabUaczgcyYchtczLaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCLaCMaAbbbubbFafHbcrbcqbcwbcubcybcxbcAbczbcCbcBaLtbgZbcEbgZbgZbcFbgZbgZbgZbgZalIaugasSasSauhavqalIawwavTaUMaTIaUNaTKaUOaUPaUQaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaEOaURaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaUWaUSaUTaUSaUSaUSaUUaUVaUTaUSaUSaUSaUTaUSaUWaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaDjaJlaDnaaaaaaaaaaaaahkaaaaaaaaaaPGaPGaPGaPGaUXbcGaQFaQFaUZaVaaVbaVcaVdaVeaVfaVgaaAaEXaVhaBnaTlaTmaaAaViaVjaVkaVlaVmaVnaVoaVpaVpaVpaVqaVraVsaVtaVuaVvaVwaVxaVyaVzaVAaVAaVAaVBaiDaiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcAcczLaaaaaaczKchtczecAebUabUabUabUabUabUaczYcyQczLaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbaCObcHafHbcNbcIbdHbcVbdJbdIbdKaCWaZsbdLbdQbdPbdRaJkbdTbdSaBjaBkaBlaBmaAnaugasSasSauhawvalIawwavTaFLaVKaVLaVMaVNaVOaVPaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaEOaVQaGSaaaaaaaaaaVRaVRaVRaVRaVRaaaaagaaaaUWaVSaVSaVSaVSaVScAgcAfaVSaVSaVSaVSaVScAhbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaEbaWbaHSaWcaWdaaaaaaaaaahkaaaaaaaaaaWeaWfaWgaWhaWiaRTaQFaWjaWkaWlaWmaWnaVdaWoaVfaFRaaAaWpaWqaBnaTlaTmaaAaWraWsaWtaWuaWvaWwaTnaPMaWxaPMaPMaWyaSoaSoaWzaTsaWAaWBaTsaSraUzaUzaUzaSraiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZcyYczLaaaaaaaaaaaaczKbTVcyYczebUacAibUabUacyXbQrczLaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHbdUaEybdVafHatkbeDaFwbeEbeIbeHbeJaFwbeKaVFbeLavMbeNavMavMaMtaCcaCdaCeaCfaAnaugasSavpauhavqalIaWLaWMaWMaWNaWOaWPaWQaUPaWRaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaEOaVQaGSaaaaaaaVRaVRaWSaWTaWUaVRaVRaVRaUWaUWaWVaWWaWXaWYaWVaWZaXaaWVaWVaWVaWVaWVcAjbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaXeaFRaHSaXfaXeaaaaaaaaaahkaaaaaaaaaaPGaXgaWfaWeaQFaQFaXhaXiaXjaXkaXlaXmaVdaWoaXnaXoaaAaXpaWqaXqaXraTmaaAaXsaXtaXuaXvaXwaXxaXyaXzaXzaXAaPMaXBaXCaXDaXEaPMaTsaTsaPMaTtaXFaXGaXHaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKczLaaaaaaaaaaaaaaaaaaaaaczKbTVbQrbQrbQrbQrczLaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHatkbeOaFwaFtaFtbePbeQaFwbeRaRoaxIaxJbeSaxJaxJbeTaDcaDdaDeaDfaAnaugavOavPavQavqaXTaXUaXTaXTaXVaXWaXWaUPaUPaXXaTIaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaVQaGSaaaaVRaVRaXYaXZaYaaXZaXZaYbaVRaYcaYcaYcaYdaYeaYfaYcaYgaZaaYcaYcaYcaYcaYccAkbdiaaaaagaUgaYnaYnaYnaUgaagaagaagaYoaYpaHSaYqaYraagaagaagaoTaagaagaagaYsaYsaYsaYsaYsaYsaYsaYsaYsaYsaYsaYsaVdaYtaYuaYvaaAaYwaYxaIxaTlaYyaaAaYzaTnaTnaYAaYBaXyaTnaXzaXzaYCaPMaPMaWxaPMaPMaPMaaQamBaaaaYDaYEaYFaYEaYGaeNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHahcahcatkbeDaFwaFwaFwbeVaFwaFwaXSaVFaxcbeYbfOavnavnbfPaAnaDXaDYaDZaAnaugavOawuavQaxMaXTaYPaYQaYRaXVaXVaYSaUPaYTaYUaTIaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaAOaDjaVQaDnaAOaVRaYVaYWaYXaYXaYYaYaaXZaVRaYZaYcaYcaYcaYcaYcaYccAlaZaaYcaUWaUWaUWaUWaUWbdiaaaaUgaUgaFRaFRaFRaUgaUgaaaaaaaaaaGTaJlaZbaaaaaaaaaaaaahkaaaaaaaaaaYsaZcaZcaZcaZcaZcaZcaZcaZcaZcaZcaZcaVdaFRaZdaYvaaAaZeaZfaBnaTlaZgaZhaLvaZiaZjaZkaZlaZmaZjcAmaXzaXzaXzaXzaXzaZnaZoaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaagvahcahcatkaucbfQaFwbfVbfSbfYbfVaXSaVFaxcbeYbfOaIoavnbfPaAnaEKaELaEMaAnaugavOaxdavQavqaXTaZyaZzaZzaZAaXVaZBaZCaZDaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaZEaZFaZGbfZbgaaZJaZKaZLaZMaXZaZNaZOaZPaZQaZRaZRaZRaZRaZRaZSaZRaZTaZUaYcaVWcAocAncApbdiaaaaaaaYnaZVaFRaZWaFRaFRaUgaUgaUgaUgaUgaZXaZYaUgaUgaUgaaaahkaaaaaaaaaaYsaZcaYsaYsaYsaYsaYsaYsaYsaYsaYsaZcaVdaFRaZdaYvaaAaZZaLvaBnaTlbaaaddaddbabbacbadaZlaZmbaeaXzaXzbafbafaXzaXzbagaZoaZpaaQamBaaaaaacArcAqcAqcAqcAsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHahcahcatkbeDaFwaFwaFwbeVaFwaFwaXSaVFaxcbeYbfOavnavnbfPaAnaDXaDYaDZaAnaugavOawuavQaxMaXTaYPaYQaYRaXVaXVaYSaUPaYTaYUaTIaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaAOaDjaVQaDnaAOaVRaYVaYWaYXaYXaYYaYaaXZaVRaYZaYcaYcaYcaYcaYcaYccAlaYjaZAaUWaUWaUWaUWaUWbdiaaaaUgaUgaFRaFRaFRaUgaUgaaaaaaaaaaGTaJlaZbaaaaaaaaaaaaahkaaaaaaaaaaYsaZcaZcaZcaZcaZcaZcaZcaZcaZcaZcaZcaVdaFRaZdaYvaaAaZeaZfaBnaTlaZgaZhaLvaZiaZjaZkaZlaZmaZjcAmaXzaXzaXzaXzaXzaZnaZoaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaagvahcahcatkaucbfQaFwbfVbfSbfYbfVaXSaVFaxcbeYbfOaIoavnbfPaAnaEKaELaEMaAnaugavOaxdavQavqaXTaZyaZzaZzbhpaXVaZBaZCaZDaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaZEaZFaZGbfZbgaaZJaZKaZLaZMaXZaZNaZOaZPaZQaZRaZRaZRaZRaZRaZSaZRaZTaZUbpdbhqcAocAncApbdiaaaaaaaYnaZVaFRaZWaFRaFRaUgaUgaUgaUgaUgaZXaZYaUgaUgaUgaaaahkaaaaaaaaaaYsaZcaYsaYsaYsaYsaYsaYsaYsaYsaYsaZcaVdaFRaZdaYvaaAaZZaLvaBnaTlbaaaddaddbabbacbadaZlaZmbaeaXzaXzbafbafaXzaXzbagaZoaZpaaQamBaaaaaacArcAqcAqcAqcAsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHanXahcatkaucbgbaFwbgdbgcbgXbgVbhbbhaaxIbhOaxJaxJaxJbhPaFAaBjaFBaBjaAnaugasSaxLauhavqaXTbavbawbaxbayaXVaXVaXVaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaEOaVQaHVaHPaHOaHOaVRbazaYabaAbaBbaBbaCbaDbaEbaEbaEbaEbaEbaEbaEbaEbaFbaGbaHaXbcAucAtcAvbdiaaaaaaaYnaFRbaIbaJbaKbaLbaMbaNbaLbaObaPaHSaYvaFRbaQaUgbaRbaSbaTaUgaYnaVdaZcaYsbaUbaVbaWbaXbaYbaZbbabbbbbcbbdbbebbfcAwaaAaWqbbhbbiaTlbaaaddaddbbjaZjcAxaZlbbkaZjaXzaXzbafbafaXzaXzbblaZoaZpaaQamBaaacAycAAcAzcAzcAzcAAcABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaabjVbjVbjVafHafHafHatkaucbhSbhQbhVbhTbhTbhTbjcbjabjfbjebjgbjgbkbbjhbkcbkcbkebkdbkfaxCasSasSauhbbwbbxbbybbzaZzaZzbbAaZzbbBbdiaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaEOaVQaGSaagaaaaaaaVRaVRbbCaXZaYaaXZbbDaYbbaEbbEblqbbGbbHbbIbbJbaEbbKbgnbaHaYjcADcACcAEbdiaaaaaaaYnaFRbbLbbMbbNbbNbbNbbNbbObbPbbQbbRbbSbbTbbMbbUbbVbbWbbXbbUbbYaVdaZcaYsbbZbcabbZbcbbccbccbccbcdbccbcebcfbcgbchbciaWqbcjavPbckbaaaddaddbbjbclaZkaZlbcmaZjbcnaXzbafbafaXzaXzbcoaZoaZpaaQamBaaacAFcAHcAGcAGcAGcAJcAIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaabjVbjVbjVafHafHafHatkaucbhSbhQbhVbhTbhTbhTbjcbjabjfbjebjgbjgbkbbjhbkcbkcbkebkdbkfaxCasSasSauhbbwbbxbbybbzaZzaZzbbAaZzbbBbdiaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaEOaVQaGSaagaaaaaaaVRaVRbbCaXZaYaaXZbbDaYbbaEbbEblqbbGbbHbbIbbJbaEbbKbgnbinbqLcADcACcAEbdiaaaaaaaYnaFRbbLbbMbbNbbNbbNbbNbbObbPbbQbbRbbSbbTbbMbbUbbVbbWbbXbbUbbYaVdaZcaYsbbZbcabbZbcbbccbccbccbcdbccbcebcfbcgbchbciaWqbcjavPbckbaaaddaddbbjbclaZkaZlbcmaZjbcnaXzbafbafaXzaXzbcoaZoaZpaaQamBaaacAFcAHcAGcAGcAGcAJcAIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagbjVblrblsbcsbctbcpbcvbmxbmzbmybmBbmAbmAbmCbmDaLhbnLaLeboIcAKboKboJboLaNAaNAbpfbkfaxCasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaaaaalUaxPaoiaaaaaabcObcPbcPbcPbcObcQaiDaagaaaaaaaaaaVRaVRbcRbcSbcTaVRaVRbaEbcUbpgbcWbcXbcYbcZbdabdbbdcbaHaUWaVdaVdbdibdiaaaaaaaUgaUgaZdaYvaFRaUgaUgaUgbddbdebdfbdebdgbdebdhaUgahLaHWahLaUgaVfaVdaagbdibbZbbZbbZbdjbdkbdlbdmbdnbdobdnbdpbdqcALaaAbdsbcjawubckbdtayqbdubdvbdwbdxbdybdzbdAbdBaXzaXzaXzaXzbdCaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbdEbdEbdEbcpbdFbdFbdFbdGbcpbphbdMbdObdMbdNbnNaudaudbpiaynbpSaxbaudauecANcAOaueaAmaueaueauebhcasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaalUaxPaoiaaabcObcPbcObdXbdYbdZbcObeabcOaagaaaaaaaaaaaaaVRaVRaVRaVRaVRaaabaEbebbqjbedbeebefbegbehbeibejbaHaUWbekaVdaVdaaaaaaaaaaaaaUgaZdaZYaUgaUgaaaaUgaUgaYnaUgaUgaUgaYnaUgaUgaaaahkaaaaYnaVfaVdbelbdibdibdibdibdibdibdibdibdiaagaVdaFRaZdaYvaaAbembcjaxdbckbaaaddbenbeobclbepbeqberaZjbesaXzbafaXzbetbeubeubeubevbeubeubewcAPcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbdEbcpbexbeybezbcpbeAbcpbdFbdFbeBbeCbdMbqxbeMbqybnNbqAbqzbrAbqBbrCbrBaudbrDaJIbrNbrQaJfbsHbrRaueaugasSbttbeWbeXbtCbeZbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaalUaxPaoiaaabcObcObfacAQbfcbfdbfecARbffbcObcOaaaaaaaaaaaaaaaaagaagaaaaaaaaabaEbfgbtDbfibbGbfjbfkbaEbflbfmbfnbfobfpbfqbfrbfrbfrbfrbfrbaMbfsbftaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaYnaVfaVdbelbelbelbelbelbelbelbelbelbelbelaVdaFRaZdaYvaaAaWqbfubfvbfwbfxaAubfybfzbfAbfBbfCbfDaZjbfEaXzbfFbfGaXzaXzaXzaZobfHbfIbfJbfHcAScAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbcpbfKbfLbfKbfMbfLbfKbfLbcpbcpbcpbfNaJEbtIbqxbfWbfXbnNbtJaxDayMaxDbtLbtKaudaXSaxcaKXayPayQayRbtMaueaugasSbgeauhbcJbdWbcMbcLaZzbdWbcMbcLaZzaTwaaaaaaalUaxPaeMaaabcObcObfebgfbfbbfbbggbfbbfbbghbgibcObcOaaaaaaaaaaaaaaaaagaagaaaaaabaEbgjbgkbglbgjbgjbgjbaEbgmbgnbgobgpbgqbbNbbNbbNbbNbbNbgrbbNbgsbgtaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUapLaaaaYnaVfaVdaVdaYnaYnaYnaYnaYnaYnaYnaYnaYnaVdaVdaFRaZdaYvaaAbgubgvbgwbgxbgybgzbgAbgBbgCbgDbgEbgFaZjaXzbgGbgHbgIbgJbgJbgJcATbgLbgMaZpbgNcAMcAUcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbgObgPbgQbgPbgObgQbgPbgQbgObcpbgRatkaucbdObqxbfWbgYbnNbuzaxDayMaxDbtLbvaaxbaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbvcaZzaZzaZzaZzbvgaiDaaaalUaxPaoiaaaaaabcPbhdbfebhebgibhfbfebhgbhhbghbhibhjbcPaaaaaaaaaaaaaaaaaaaagaagaaabaEbhkbfhbhlbhmbhnbhobaEbhpbhqbaHbhrbhrbhrbhrbhrbhrbhrbhrbhsaUeaVfaUgaUgaUgaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaiDbhtbbYaFRaFRaFRaFRaFRaFRaFRaFRbhuaFRbhvbhwaFRaZdbhxaaAaAsaBnaBnaTlbhyayqayqbhzbhAbhBbhCbhDbhEbgJbhFbhGbhHaXzbhIaXzaZobfHbhJbfJbfHcAVcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbgObgPbgQbgPbgObgQbgPbgQbgObcpbgRatkaucbdObqxbfWbgYbnNbuzaxDayMaxDbtLbvaaxbaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbvcaZzaZzaZzaZzbvgaiDaaaalUaxPaoiaaaaaabcPbhdbfebhebgibhfbfebhgbhhbghbhibhjbcPaaaaaaaaaaaaaaaaaaaagaagaaabaEbhkbfhbhlbhmbhnbhobaEbgmbaGbaHbhrbhrbhrbhrbhrbhrbhrbhrbhsaUeaVfaUgaUgaUgaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaiDbhtbbYaFRaFRaFRaFRaFRaFRaFRaFRbhuaFRbhvbhwaFRaZdbhxaaAaAsaBnaBnaTlbhyayqayqbhzbhAbhBbhCbhDbhEbgJbhFbhGbhHaXzbhIaXzaZobfHbhJbfJbfHcAVcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbdEbhLbfKbhMbhNbgObhMbhNbfLbgObcpbgRatkaucbdObqxbfWbhRbnNbvhaxDayMaxDbtLbvUbwtaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbcLaZzaZzaZzaXTaXTaiDalUaxPaoibcObcObcObcObhYbhZbfebfebfebiabibbfebicbidbiebifbifbigbifbihaaaaaaaaaaagaagbaEbiibecbijbikbilbimbaEbaFbgnbinbiobipbiqbirbisbitbiubhraagaUeaVfaUgbivaUgaUgaUgaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaiDbiwbixbiybiybiybiybiybiybbNbbNbbNbbNbbNbbNbbNbizbiAaaAaAsaBnaBnaTlbiBbiCbabbiDbiEbiFbiGbiHbiIbiJbiKbiLaXzbiMbiNbiNbiNbiObiNbiNbiPcAWcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagbdEbiQbgPbiRbiSbiTbiUbiVbiWbgObcpbcpawpaucbdObqxbjdbhRbnNbwvbwubwCaxDbwDbvaaxbaXSbwIaKXbxSbxSbxSbyGaueaxCasSbjkbjlbjmbjnbjnbjoaZzaZzbbBaXTbzAalUaxPaoibcObcObjpbjqbjrbjsbjsbjtbjubjsbjvbjvbjsbjsbjsbjsbjwbjsbjsbjxbjyaaaaaaaaaaaaaagbaEbjzbfhbhlbimbimbimbaEbgmbaGbaHbhrbjAbjBbjBbjCbitbjDbhraagbjEaVfaUgaUgaUgbjFaUgaUgaaaaaaaaaalUaxPaoibjGbjHbjHbjGbjIbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGaZdbjJaaAaAsaBnaBnaTlbjKcAXbjLbjLbjLbjLbjMbjNbjObjPbjQbjRcAYbjTaXzaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabdEbhLbfKbhMbhNbjWbhMbhNbjXbgObjYbjZawpaucbdObqxbhRbhRbnNaudbzLaxDaxDbqBbzSaynaXSbzVbzUauLauLauLauLaueaxCasSbkiauhbkjaXTbkkbkkbklbkmbcMaXTaaabknaoiaaabcObjpbkobkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkqbkqbkqbkrbksaaaaaaaaaaaaaaabaEbaEbktbkubaEbkvbkwbaEbflbkxbkybkzbkAbkBbkCbkDbitbkEbhraagaUeaVfaUgbkFbkGbkHbkIaUgaUgaaaaaabknaoiaaabjGbkJbkKbkLbkLbkMbkMbkNbkObkPbkPbkPbjGbkQbkRbjGbkQbkRbjGaZdbkSaaAaAsaBnbfubkTbkUbkVbkWbkXbkYbkZblablbblcbldbleblfblgblgblgblgblgblgaaQamBaaacAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUblhbliblhbjVbjVbjVbljbgPbiRbiSblkbllblmblnblobcpblpawpaucbdObqxbhRbhRbFbaudbFkaxDaxDaxDbFlayOaXSbFmavnavnavnavnavnbvbaxCasSbkiauhbGlaXTaXTaXTaXTaXTaXTaiDbluaFUblvbcObcObkrbkpbkpblwblxblyblzblAblBblCblDblEblFblGblwblHblIbkqbkrbjyaaaaaaaaaaaaaaabaEblJblKblLbaEbaEbaEbaEblMbaGbaHblNblNblNblNblNblNblNblNaagbjEaVfaUgbkFaFRaFRaFRblOaYnaaaaaaahkaaaaaabjGblPblQbkLbkLblRblRblRblRblRblRblRbjGblSblTbjGblSblTbjGaZdaYvaaAaDraBnbbhblUblVblWblXblYblYblZbmabmabmbbldbjQbmcbmdbmebmfbjSbmgaZpaaQamBaaacAZcBacBacBacBacBacBbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbmhbmibmhbmjbmkbmlbmmbmnbmobmpbmobmqbmrbmobmsbmtbmubmvbfNbmwbdObqxbhRbhRbGmaudbGnbGIaxDbHvbrBaxbbHwaNAaNAbIraNAaNAaNAbIJaxCasSbmEbeWbmFbmGbmHbmHbmIbmJbjsbmKbmLbmMbmNbmKbjsbmObkpblwbmPbmQbmRbmSbmTbmUbmVbmWbmXbmYbmZbnabnbbncbkqbkrbndbnebnebnebnebnebaEbnfbngbnhbnibnjbnkbaEbgmbaGbaHblNbnlbnmbnnbnnbnnbnoblNaagaUeaVfaUgaUgaUgbnpaUgaUgaUgaaaaaaahkaaaaaabjHbnqblRbkLbnrbjGbjGbnsbnsblRbnsbnsbjGcBcbjGbjGcBdbjGbjGaZdaYvaaAaAsaBnaBnbnvbnwblWcBebmabmacBfbmabmacBgbldbnAbnBbnCbjSbnDbmgbnEaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbmhbmibmhbmjbmkbmlbmmbmnbmobmpbmobmqbmrbmobmsbmtbmubmvbfNbmwbdObqxbhRbhRbGmaudbGnbGIaxDbtKbrBaxbbHwaNAaNAbIraNAaNAaNAbIJaxCasSbmEbeWbmFbmGbmHbmHbmIbmJbjsbmKbmLbmMbmNbmKbjsbmObkpblwbmPbmQbmRbmSbmTbmUbmVbmWbmXbmYbmZbnabnbbncbkqbkrbndbnebnebnebnebnebaEbnfbngbnhbnibnjbnkbaEbgmbaGbaHblNbnlbnmbnnbnnbnnbnoblNaagaUeaVfaUgaUgaUgbnpaUgaUgaUgaaaaaaahkaaaaaabjHbnqblRbkLbnrbjGbjGbnsbnsblRbnsbnsbjGcBcbjGbjGcBdbjGbjGaZdaYvaaAaAsaBnaBnbnvbnwblWcBebmabmacBfbmabmacBgbldbnAbnBbnCbjSbnDbmgbnEaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabnFbnGbmjbmjbnHbmjbmjbnIbjVbjVbjVbjVbjVbjVbjVbcpbnJbnKbcpbcpbfNbIKbdObhRbhRbhRbILaudbJMaBdaBdaBdbJNaudbnObnObnObnObnObnObnObnOayTasSbkiauhavqalIbnPbnPbnQbnRbcObcOahLaHWahLbcObcObkrbkpbnSbmPbnTbnUbnVbkpbnWbnXbnYblwbnZblwboabobbocbkqbodbeaboebofboebogbnebaEbbGbbGbohboibojbokbaEbflbolbfnbombonboobopboqborbosblNaUgaUebotbbNbbNbbNbbNbbNbbYaYnaagaagaoSaagaagbjGboubovbkLbkLbowboxblRblRblRblRblRblRblRboybozblRboAbjGaZdaYvaaAcBhaBnaBnboBboCboDcBibmabmacBjbmabmacBkbldboHbjSbjSbjSblgblgblgblgaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboMboMboMboNboOboPboQboRboSboTboUboVboWboXboYboZbpabpbbfNbpcbdObdObJObdObdOaudaudawrawrawqawraudbpjbpkbplbplbplbpmbpkbnOaugasSbkibpnbpobppbpqbpqbprbpqbpqaaaaaaahkaaaaaabcObpsbkpbptblwblwbnXbpubkpbpvbpwbpxblwbpyblwbpzbpAbpBbkqbpCbpDbpEbpEbpFbpEbpEbaEbpGbpHbpIboibpJbpKbaEbgmbgnbinbpLbpMbpNbpObpPbpQbpRblNbzeaYtbaLbpTbaLbaLbaLbaObpUaUgaaaaaaahkaaaaaabjGbpVbpWbkLbpXbpYbpYbpYbpYbpYbpYbpYbpYbpZbqabpYbpYbqbbqcbqdaYvaaAcBlaBnbqebqfbqgboDcBibmabmacBjbmabmacBmbldbmgbmgbjSbjSblgbuVbtrbtsbuWbuWbxMbqkbqlbqlbqmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboNboNboNbjVbjVbjVbqnbqnbqobqpbqqbqrbqsbqtbqubqvbqwbfNbpcbwBbwBbwBbJQbJPaudauIauIauIauIauIaudbqCbqDbqEbqFbqFbqFbqGbqHbqIbqJbqKaHMaHNbppbqLbqMbqNbqObpqaaaalUbqPanuaaabcObqQbqRbqRbqRbqRbqSbqTbqRbpvbqUbqVbqWbqXbqWbqYbqZbrabkqbpCbpDbrbbrcbrdbrebrfbaEbaEbaEbaEbaEbrgbrhbrhbribKXbKWblNbnnbrjbrkbrlbpQbnnblNbrmbrmbrmbrmbrmbrmbrmbrnbrobrpaaaalUbqPanuaaabjGbrqbovbkLbrrbrsbrsbrsbrsbrsbrsbrsbrsbrsbrtbrsbrsbrubrvbrwbdhaaAcBnaBnbrxbrybrzboDcBibmabmacBjbmabmacBmbldblgblgblgblgblgbuVbtrbzqbzrbzrbzqbrEbrFbrGbrHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboNboNboNbjVbjVbjVbqnbqnbqobqpbqqbqrbqsbqtbqubqvbqwbfNbpcbwBbwBbwBbJQbJPaudauIauIauIauIauIaudbqCbqDbqEbqFbqFbqFbqGbqHbqIbqJbqKaHMaHNbppbumbqMbqNbqObpqaaaalUbqPanuaaabcObqQbqRbqRbqRbqRbqSbqTbqRbpvbqUbqVbqWbqXbqWbqYbqZbrabkqbpCbpDbrbbrcbrdbrebrfbaEbaEbaEbaEbaEbrgbrhbrhbribKXbKWblNbnnbrjbrkbrlbpQbnnblNbrmbrmbrmbrmbrmbrmbrmbrnbrobrpaaaalUbqPanuaaabjGbrqbovbkLbrrbrsbrsbrsbrsbrsbrsbrsbrsbrsbrtbrsbrsbrubrvbrwbdhaaAcBnaBnbrxbrybrzboDcBibmabmacBjbmabmacBmbldblgblgblgblgblgbuVbtrbzqbzrbzrbzqbrEbrFbrGbrHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabjUbqnbrIbrJbrKbqnbjVbrLbrMbKYbrObrPbfNbpcbwBbwBbwBbwBbJPaudauIauIavjauIavkaudbrTbpkbrUbrVbpkbpkbrWbnOaugasSbrXaHMbrYbppbrZbrZbsabrZbpqcBobsbbscbsdbsebcObpsbqRbsfbsgbshbsibsjbqRbskbslbsmbsmbsnbsmbsobsmbspbsqbsrbssbstbsubsvbswbsxbsybszbsAbsBcBpbsDbsEbsFbsGbKZbsIblNbsJbsKbsLbsMbsNbsOblNbsPbsQbsRbsSbsTbsUbsVbsWbsXbrpbsYbsbbscbsdbsebjGbjGbjGbjGbjGbjGbjGblRbkLbsZbtablRblRblRbtbbtcbtdbtebjGbtfbivaaAaAsaBnaBnbtgbthbjLcBibmabmacBjbticBqcBrbldbtlbtmbtnbtobtpbtqbtrbtsbuWbuWbLabtubqlbqlbtvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbtwbtxbtybtzbjVbtAbtBbgObtBbLcbLbcBsbtGbtGbtHbwBbJPaudauIauIauIauIauIaudbtNbtNbtObtPbtNbtNbtNbnOaugasSbgeaJhaJibppbtQbtRbtSbtTbpqbtUbtVaaQbtWbtXbcObqQbqRbtYbtZbuabubbucbqRbudbuebuebufbugbuhbuibuebujbukbulbumbunbuobupbuqburbusburbutbuubuvbuwbuxbpEbuybuAbuAblNbuBbuCbnnbnnbnnbuDblNbsQbsQbsQbsQbuEbuFbuFbuGbuHbrpbtUbtVaaQbtWbtXbjGblRbuIbuIblRblRbuJblRbkLbuKbuLbuMbuNbuObjGbjGbjGbjGbjGbtfaFRaaAaAsaBnaBnaTlaTmbjLbuPbuQbuPbuRbuPbuPbuSbuTbuUbuVbLdbLCbLebuVbtrbuWaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbtwbtxbtybtzbjVbtAbtBbgObtBbLcbLbcBsbtGbtGbtHbwBbJPaudauIauIauIauIauIaudbtNbtNbtObtPbtNbtNbtNbnOaugasSbgeaJhaJibppbtQbtRbtSbtTbpqbtUbtVaaQbtWbtXbcObqQbqRbtYbtZbuabubbucbqRbudbuebuebufbugbuhbuibuebujbukbulbGkbunbuobupbuqburbusburbutbuubuvbuwbuxbpEbuybuAbuAblNbuBbuCbnnbnnbnnbuDblNbsQbsQbsQbsQbuEbuFbuFbuGbuHbrpbtUbtVaaQbtWbtXbjGblRbuIbuIblRblRbuJblRbkLbuKbuLbuMbuNbuObjGbjGbjGbjGbjGbtfaFRaaAaAsaBnaBnaTlaTmbjLbuPbuQbuPbuRbuPbuPbuSbuTbuUbuVbLdbLCbLebuVbtrbuWaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbuXbuYbqnbjVbuZbtBbgObLDbLFbLEcBtbvebvfbMAbMBbExaudaudaudaudaudaudaudbvibpkbvjbvkbvlbvmbvnbnOaEaasSbgeaJKbvobppbtQbvpbvqbvrbpqcBucBwcBvcBycBxbcObkrbqRbvxbvybvzbvAbvBbqRblwbvCbvCbvDbvEbvDbvCbvCbvFbkqbvGbpEbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbpEbvTbvVbvVbvWbvXbvYbvZbpQbnnbwablNbsQbwbbwcbwdbwebwfbwgbwhbwibrpcBucBwcBvcBycBxbjGbwjbwkbwlbovblRcBzblRbkLbuKbwnblRblRbwobjGbwpaFRaFRbnpbtfaFRaaAaAsaBnaBnaTlaTmbjLbjLbjLbjLbjLbjLbjLbjLcAXbwqbwrbMCbMUbMTbwsbtrbuWaaQamBaaabwwbwxbwxbwxbrHbwxbwxbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFaaFaaFaaPbjVbjVbjVbwzbjVbiTbwAbOgbOfbPnbOhcBAbwFbwGbwHbxWbwJbwKbwLbwMbwKbwNbwObnObwPbpkbwQbwRbwSbpkbwTbnOaugasSbgeauhavqbppbtQbwUbtQbwVbpqbwWbwXbwYbwZbxabcObkrbqRbxbbxbbxcbxbbxdbqRbnSbvCbvCbxebxfbxgbvCbvCblwbkqbxhbpEbpEbxibpEbpEbpEbxjbxkbxlbpEbxmbvQbxnbpEbuybuAbuAbvWbxobnnbxpbsNbnnbnnblNbsQbsQbsQbsQbxqbxrbxrbxsbxtbrpcBBbwXbwYbwZbxvbjGbwjbxwbxxbovblRcBzblRbkLbuKbxybxzblRbxAbjGbaQaFRbxBaUgbtfaFRaaAbxCaBnaBnaTlbxDbxEbxFbxFbxFbxFbxFbxHbxFbxFbxIbxJbPKbQNbPMbxKbxLbuWbuWbuWbxMbxNbxObxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeNahLahLahLahLahLahLcBCbjVbjVbdEbdEbcpbxTbxTbxTbxTbxTcBDbxVbQPbxTbwKbwKbwKbwKbwKbxXbnObxYbxZbyabybbycbydbyebnOaugasSbgeauhavqbppbyfbrZbygbyhbpqbyibyjbykbylcBEbcObkrbqRbynbyobypbyqbyrbqRbysblwblwblwblwbytblwblwbysbkqbyubpEbyvbywbyxbyybyzbyAbyAbyBbpEbyCbyDbyEbpEbyFbyHbyHbvWbyIbyJbyKbyLbnnbnnblNbyMbsQbyNbyObyPbyQbyRbySbyTbrpcBFbyjbykbylbyVbjGbyWbyXbyYblRblRbuJblRbkLbuKbyZbzabzbbzcbjGbaQbzdbzeaUgbtfbhuaaAaDraBnaBnbzfbzgbzhbzibzicBGbzkbzlbzkbzkbzkbzmbznbzibzibzibzobzpbzqbzrbzrbzqbzsbztbztbztbQQbztbztbztbxNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBIcBHcBJbzuaaaaaaabWaaQbzvcBDbxVbxWbxTbzwbzwbzwbzwbzwbzwbnObnObnObzxbzybnObnObnObRraugasSbgeauhavqbRzbzzbRAbzBbRAbzzbzCbzDbzEbzFbzGbzHbzIbqRbqRbzJbzKbzJbqRbqRbRBbRBbRBbRBbzMbRBbRBbRBbRBbkqbzNbpEbzObzPbzQbzQbzQbzQbzQbzRbpEbpEbpEbpEbRCbzTbRDbRDbSFblNblNblNblNblNblNblNbzWbzXbzWbrmbrmbrmbzWbzYbzZbrpbzCbzDbzEcBKbAbbjGbjGbjGbjGbjGbjGbjGbuJbAcbAdbuJbjGbjGbjGbjGbAebAebAebAebAfbAebSGaAsaBnaBnaBnbAgbAhbAhbAhbAibAjbAkbAhbAhbuVbwqbAlbAmbAmbAnbAobzpbuWbuWbuWbLabxNbApbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBMcBLcBNcBNcBLcBOcBQcBPaaaaaaabWaaQbzvcBRbArbAsbAtbAubAubAubAubAubAubAvbAwbAwbAxbAybAzbAAbAAbABaTGasSbgeauhbACatAbADbAEbAFbAGbAHbAIbAJbAIbAIbAIbAHbAHbAHbAKbAGbALbAEbAMbANbAEbAEbAEbAEbAEbAEbAEbAEbAEbANbAObANbANbANbAPbANbANbANbANbANbANbANbANbANbAPbAQbARbARbASbARbARbATbAUbAVbAWbAXbANbANbANbAYbANbANbANbAZbBabAHbAIbBbbBcbBdbBcbANbANbANbANbANbANbANbANbANbAObANbANbANbBebBfbBgbAWbAXbANbBhbADbBibBjaBnaBnaBnbBkbBlbBmbAhbBnbBobBpbBqbBrbBsbBtbBubBvbBwbBxbAobzpbuWaaQamBaaabBybwxbwxbwxbrHbwxbwxbwxbBzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaabzucBMcBLcBNcBLcBTcBScBVcBUcBXcBWcBQcBPaaaaaaabWaaQbzvcBDbBAbBBbBBbBBbBBbBBbBBbBBbBBbBCbBBbBBbBBbBDbBEbBEbBEbBFaSDaSDbBGbBHaSDbBIbBJbBKbBKbBKbBKbBKayqbBKbBKbBKbBKbBKbBKbBLbBMbBMbBMbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBNbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBObBPbBQbBRbBSbBTbBUbBKbBVbBWbBXbBYbBZbBKbBKbBKbBKbBKbBKbBKbCabCbbCbbCbbCcbCcbCdbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBNbBKbBKbBKbBVbBWbBWbBYbBZbBKbCebBJbCfayqaLvaBnaBnbBkbBlbCgbAhbChbuVbCibCjbAhbuVbwqbBubBubBwbBxbAobzpbuWaaQamBaaabwwbwxbwxbwxbrHbwxbwxbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagcBMcBLcBLcBNcBLcBNcBZcBYcCbcCacBWcCccCecCdcCfcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbwBbwBbwBbwBbwBbwBbClbwBbwBbwBbwBbwBbwBbwBbxTbCmasSbCnbeUbeUbCobCpbCqbCrbCrbCrbCrbCrbCrbCrbCrbCrbCrbCrbCsbCtbCubCvbCwbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbCxbBcbBcbBcbBcbCybBcbBcbBcbBcbBcbBcbBcbCzbCAbCBbCCbCDbCEbCFbBcbBcbBcbCGbCxbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbCHbCtbCubCvbCwbBcbBcbBcbBcbBcbBcbBcbBcbBcbCxbBcbBcbBcbBcbBcbCybCxbBcbBcbCIbCpbCJbCKauqbgwbCLbBkbBlbBmbAhbCMbCNbCObCPbAhbCQbwqbCRbBubBwbBxbAobzpbuWbuWbuWbxMbxNbCSbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagcBNcCgcCbcCacChcCbcCacChcCbcCacBWcCicCecCdcCfcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbwBbwBbwBbwBbwBbwBbClbwBbwBbwBbwBbwBbwBbCTbBFaSDaSDbCUaSDaSDbBIbBJbCVbCWbCWbCXbCYbBKbBKbBKbBKbBKbBKbBKbBKbCZbCZbCZbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbDabBKbBKbCVbCWbDbbCXbCYbBKbBKbBKbBKbBKbBKbBKbBKbBKbDcbBKbBKbBKbBKbBKbBKbDdbBKbBKbBKbBKbBKbBKbBKbBKbDebBKbBKbDfbCZbCZbCZbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbDgbBKbBKbBKbBKbBKbDhbDdbBKbBKbBKbBJbCfayqbDiaLvbDjbDkbAhbAhbAhbDlbDmbAibAhbAhbuVbwqbDnbDobDnbAnbAobzpbzqbzrbzrbzqbzsbztbztbztbztbztbztbztbxNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagcCjcBOcCbcCacChcCbcCacChcCbcCacBWcCkcCecCdcCfcClcBHcBJbDpbzvbzvbzvbzvcBRbDqbDrbwBbDsbDtbDubDvbDwbDwbDxbDtbDybDtbDtbDzbDtbDAbDBbDCbDDbDEbDFbDFbDGbDHbDIbDJbDKbDLbDMbCWbDNbCWbCWbCWbDObDPbBKbBKbBKbBKbBKbDQbDObCWbCWbCWbCWbCWbDNbDObCWbCWbCWbDRbDSbDTbDUbDVbDLbDWbCWbCWbDObCWbCWbCWbCWbCYbBKbDXbCWbCWbCWbCWbCWbCWbCWbCWbCWbCWbCWbDYbDYbDYbDZbBNbBKbBKbBNbCWbCWbCWbCWbDObCWbCWbCWbCWbDNbCWbCWbDObCWbCWbCWbCWbCWbCWbDbbCWbDObCWbCWbDHbEabEbbEcbEdbEeaLvbEfbEgbEgbEhbEibEibEjbEibEibEkbElbxFbxFbxFbEmbEnbuWbuWbuWbLabxNbApbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBWcCbcCacChcCbcCacChcCbcCacBWcCmcCocCncCqcCpcCbcCpbEobEpbEpbEpbEocBDbCkbwBbwBbEqbxTbErbEsbEsbEtbEubEsbEsbEvbEwbExbEybEzbEAbEBbEybppbppbppbppbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbECbBcbBcbBcbEDbAIbEEbEFbEGbEHcCrbEJbEJbEKbELbEMbENbENbEObENbENbENbENbENbENbENbENbENbENbENbENbSHbEPbEQbERbSIbESbESbETbETbETbESbETbETbETbETbESbEUbEUbESbEVbBcbBcbCxbEWbEXbEXbEYbEXbEXbEXbEYbEXbEXbEXbEYbEXbLfbLfbLfbLfbLfbLfbRIbLfbLfbLfbLfbLfbLfbLfcCsbFcbDjaddbFdbuVbuVbFebFfbuVbwqbuVbFgbzibzibFhbFibzibFjbzpbuWaaQamBaaabBybwxbwxbwxbrHbwxbwxbwxbBzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCpcCbcCacChcCbcCacChcCbcCacCtcBLcCvcCucBLcCwcBNcBHbDpbzvbzvbzvcCxcBDbCkbwBbwBbFnbxTbFobEsbFpbFqbFrbFsbFtbEvbFubFvbEybFwbFxbFybEybFzbFAbFBbFCbFzbFDbFEbFFbFGbFHbFIbFJbFJbFJbFKbEybFLbBcbBcbBcbFMbFNbFObEKbFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGabGbbGabGabGabGabGabGabGabGabGabGcbENbEPbEQbERbESbGdbGebGebGebGfbGgbGebGhbGibGjbGebGebGebESbCxbBcbBcbCxbGkbTcbSWbSWbTdbTcbSWbSWbSWbTcbTdbSWbSWbLfcCzcCycCBcCAcCDcCCcCFcCEcCHcCGcCJcCIcCKbLfbGAbDjarucCLbGBbGBbGCbGBbGBbGDbGBbGEbGBbGBcCLbGBbGFbGGbGCbGHbGHbGHbGHbGHaagaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBIcBHcBJbzuaaaaaaabWaaQbzvcBDbxVbxWbxTbzwbzwbzwbzwbzwbzwbnObnObnObzxbzybnObnObnObRraugasSbgeauhavqbRzbzzbRAbzBbRAbzzbzCbzDbzEbzFbzGbzHbzIbqRbqRbzJbzKbzJbqRbqRbRBbRBbRBbRBbzMbRBbRBbRBbRBbkqbzNbpEbzObzPbzQbzQbzQbzQbzQbzRbpEbpEbpEbpEbRCbzTbRDbRDbSFblNblNblNblNblNblNblNbzWbzXbzWbrmbrmbrmbzWbzYbzZbrpbzCbzDbzEcBKbAbbjGbjGbjGbjGbjGbjGbjGbuJbAcbAdbuJbjGbjGbjGbjGbAebAebAebAebAfbAebSGaAsaBnaBnaBnbAgbAhbAhbAhbAibAjbAkbAhbAhbuVbwqbAlbAmbAmbAnbAobzpbuWbuWbuWbLabxNbApbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBMcBLcBNcBNcBLcBOcBQcBPaaaaaaabWaaQbzvcBRbArbAsbAtbAubAubAubAubAubAubAvbAwbAwbAxbAybAzbAAbAAbABaTGasSbgeauhbACatAbADbAEbAFbAGbAHbAIbAJbAIbAIbAIbAHbAHbAHbAKbAGbALbAEbAMbANbAEbAEbAEbAEbAEbAEbAEbAEbAEbANbAObANbANbANbAPbANbANbANbANbANbANbANbANbANbAPbAQbARbARbASbARbARbATbAUbAVbAWbAXbANbANbANbAYbANbANbANbAZbBabAHbAIbBbbBcbBdbBcbANbANbANbANbANbANbANbANbANbAObANbANbANbBebBfbBgbAWbAXbANbBhbADbBibBjaBnaBnaBnbBkbBlbBmbAhbBnbBobBpbBqbBrbBsbBtbBubBvbBwbBxbAobzpbuWaaQamBaaabBybwxbwxbwxbrHbwxbwxbwxbBzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzucBMcBLcBNcBLcBTcBScBVcBUcBXcBWcBQcBPaaaaaaabWaaQbzvcBDbBAbBBbBBbBBbBBbBBbBBbBBbBBbBCbBBbBBbBBbBDbBEbBEbBEbBFaSDaSDbBGbBHaSDbBIbBJbBKbBKbBKbBKbBKayqbBKbBKbBKbBKbBKbBKbBLbBMbBMbBMbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBNbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBObBPbBQbBRbBSbBTbBUbBKbBVbBWbBXbBYbBZbBKbBKbBKbBKbBKbBKbBKbCabCbbCbbCbbCcbCcbCdbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBNbBKbBKbBKbBVbBWbBWbBYbBZbBKbCebBJbCfayqaLvaBnaBnbBkbBlbCgbAhbChbuVbCibCjbAhbuVbwqbBubBubBwbBxbAobzpbuWaaQamBaaabwwbwxbwxbwxbrHbwxbwxbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHvcBLcBLcBLcBNcBLcBNcBZcBYcCbcCacBWcCccCecCdcCfcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbwBbwBbwBbwBbwBbwBbClbwBbwBbwBbwBbwBbwBbwBbxTbCmasSbCnbeUbeUbCobCpbCqbCrbCrbCrbCrbCrbCrbCrbCrbCrbCrbCrbCsbCtbCubCvbCwbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbCxbBcbBcbBcbBcbCybBcbBcbBcbBcbBcbBcbBcbCzbCAbCBbCCbCDbCEbCFbBcbBcbBcbCGbCxbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbCHbCtbCubCvbCwbBcbBcbBcbBcbBcbBcbBcbBcbBcbCxbBcbBcbBcbBcbBcbCybCxbBcbBcbCIbCpbCJbCKauqbgwbCLbBkbBlbBmbAhbCMbCNbCObCPbAhbCQbwqbCRbBubBwbBxbAobzpbuWbuWbuWbxMbxNbCSbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSZcCgbZGcCbcCacChcCbcCacChcCbcCacBWcCicCecCdcCfcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbwBbwBbwBbwBbwBbwBbClbwBbwBbwBbwBbwBbwBbCTbBFaSDaSDbCUaSDaSDbBIbBJbCVbCWbCWbCXbCYbBKbBKbBKbBKbBKbBKbBKbBKbCZbCZbCZbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbDabBKbBKbCVbCWbDbbCXbCYbBKbBKbBKbBKbBKbBKbBKbBKbBKbDcbBKbBKbBKbBKbBKbBKbDdbBKbBKbBKbBKbBKbBKbBKbBKbDebBKbBKbDfbCZbCZbCZbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbDgbBKbBKbBKbBKbBKbDhbDdbBKbBKbBKbBJbCfayqbDiaLvbDjbDkbAhbAhbAhbDlbDmbAibAhbAhbuVbwqbDnbDobDnbAnbAobzpbzqbzrbzrbzqbzsbztbztbztbztbztbztbztbxNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbhcCgbZGcCbcCacChcCbcCacChcCbcCacBWcCkcCecCdcCfcClcBHcBJbDpbzvbzvbzvbzvcBRbDqbDrbwBbDsbDtbDubDvbDwbDwbDxbDtbDybDtbDtbDzbDtbDAbDBbDCbDDbDEbDFbDFbDGbDHbDIbDJbDKbDLbDMbCWbDNbCWbCWbCWbDObDPbBKbBKbBKbBKbBKbDQbDObCWbCWbCWbCWbCWbDNbDObCWbCWbCWbDRbDSbDTbDUbDVbDLbDWbCWbCWbDObCWbCWbCWbCWbCYbBKbDXbCWbCWbCWbCWbCWbCWbCWbCWbCWbCWbCWbDYbDYbDYbDZbBNbBKbBKbBNbCWbCWbCWbCWbDObCWbCWbCWbCWbDNbCWbCWbDObCWbCWbCWbCWbCWbCWbDbbCWbDObCWbCWbDHbEabEbbEcbEdbEecdObEfbEgbEgbEhbEibEibEjbEibEibEkbElbxFbxFbxFbEmbEnbuWbuWbuWbLabxNbApbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSZcpXbZGcCbcCacChcCbcCacChcCbcCacBWcCmcCocCncCqcCpcCbcCpbEobEpbEpbEpbEocBDbCkbwBbwBbEqbxTbErbEsbEsbEtbEubEsbEsbEvbEwbExbEybEzbEAbEBbEybppbppbppbppbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbECbBcbBcbBcbEDbAIbEEbEFbEGbEHcCrbEJbEJbEKbELbEMbENbENbEObENbENbENbENbENbENbENbENbENbENbENbENbSHbEPbEQbERbSIbESbESbETbETbETbESbETbETbETbETbESbEUbEUbESbEVbBcbBcbCxbEWbEXbEXbEYbEXbEXbEXbEYbEXbEXbEXbEYbEXbLfbLfbLfbLfbLfbLfbRIbLfbLfbLfbLfbLfbLfbLfcCsbFcbDjaddbFdbuVbuVbFebFfbuVbwqbuVbFgbzibzibFhbFibzibFjbzpbuWaaQamBaaabBybwxbwxbwxbrHbwxbwxbwxbBzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacDTcEscBOcCbcCacChcCbcCacChcCbcCacCtcBLcCvcCucBLcCwcBNcBHbDpbzvbzvbzvcCxcBDbCkbwBbwBbFnbxTbFobEsbFpbFqbFrbFsbFtbEvbFubFvbEybFwbFxbFybEybFzbFAbFBbFCbFzbFDbFEbFFbFGbFHbFIbFJbFJbFJbFKbEybFLbBcbBcbBcbFMbFNbFObEKbFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGabGbbGabGabGabGabGabGabGabGabGabGcbENbEPbEQbERbESbGdbGebGebGebGfbGgbGebGhbGibGjbGebGebGebESbCxbBcbBcbCxbHubTcbSWbSWbTdbTcbSWbSWbSWbTcbTdbSWbSWbLfcCzcCycCBcCAcCDcCCcCFcCEcCHcCGcCJcCIcCKbLfbGAbDjarucCLbGBbGBbGCbGBbGBbGDbGBbGEbGBbGBcCLbGBbGFbGGbGCbGHbGHbGHbGHbGHaagaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCpcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCMcCbcCbcCNbEobEpbEpbEpbEocBDbTWbTYbTXcCObxTbFobEsbGJbGKbGLbGMcCPbEvbFubGObEybGPbGQbGRbEybFzbGSbGTbFCbFzbFDbGUbGVbGWbGXbGYbGVbGVbGVbGZbEybFLbBcbBcbBcbFMbFNbFObHabHbbHcbHdbHebHfbHgbHhbHibHjbHkbHlbHmbHmbHmbHmbHmbHmbHmbHnbHmbHmbHobHpbENbEPbEQbERbETbGebHqbHrbHrbHrbHrbHrbHrbHrbHrbHsbGebGebHtbCxbBcbBcbCxbHubSWbNSbVkbNSbSWbNSbVkbNSbSWbNSbVkcCQbLfcCScCRcCTcCTcCTcCTcCVcCUcCTcCTcCTcCWcCYcCXbHFbDjarubGBbHGbHHbHIbHJbHKbHLbHMbHNbHObHPbHPbHPbHQbHRbHSbHTbHUbHVbHVbGHbGHbGHaaFaaFaaFaaFaiDaaFaaFaaFbHWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBWcCZcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCpbEobEpbEpbEpbEocBDbWDbWRbWEbFnbxTbFobEsbHXbHYbHZbGMbIabEvbFubIbbEybIcbIdbIebEybFzbIfbIgbFzbFzbFDbIhbGVbIibIjbFIbGVbGVbGVbIkbEybIlbBcbBcbBcbFMbFNbFOcDabInbIobIpbIqbXGbIsbItbHibHmbIubIvbIwbIwbIxbIybIybIxbIwbIzbIwbIwbIAbIBbENbEPbEQbICbIDbIEbIFbIGbIGbIGbIHbIGbIGbIGbIGbIIbGebGebHtbCxbBcbBcbCxbHubNSbYbbSWbYcbNSbYbbSWbYcbNSbYbbSWbYcbLfcDccDbcDecDdcDfbWCcDgbWCcDfcDhcDjcDicDkbLfaAsbDjarubGBbIWbIXbIXbIYbIZbJabJbbJcbGBbGBbJdbJebJfbJgbJhbJhbJibHVbHVbHVbJdbGHbGHahLahLaiDaiDaiDahLahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBMcBLcCwcBLcDlcBLcDmcDocDncDncDpcDmcBLcDqcDqcBLcDmcBNcBHbDpbzvbzvbzvcCxcBDbYdbZmbYQbJjbxTbFobEsbGMbJkbJlbGMbIabEvbJmbdibEybJnbJobJpbEybFDbJqbJrbJsbJsbJsbJsbJtbJubJvbJsbJsbFDbFDbFDbEybJwbJxbJxbJybJzbFNbFObJAbEMbJBcDrbJDbFWbFWbFWbFWbJEbJFbENbENbENbENbENbENbENbENbENbENbENbIAbIBbENbJGbEQbJHbETbGebJIbJJbJKbJJbJJbJJbJJbJJbJJbJLbGebGebHtbCxbBcbBcbCxbHubNSbNSbZZbZnbZnbZnbZncbBciWbNSbNScDsbLfbRIcDtbLfbLfcDubLfbLfbLfcDubLfbLfcDvbRIbLfaAsbDjarubGBbJUbIXbIYbJVbJWbJcbJcbGEbGBbHVbHVbHVbJXbJYbJZbKabKbbKcbHVbKdbKebKfbGHbGHaaaaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDxcDwcDycCbcDzcBWcDBcDAcDAcDCcBWcDDcDEcDEcDEcCpcCbcCpbEobEpbEpbEpbEocBDbCkbwBbwBbKgbxTbFobEsbEsbEsbEsbEsbEvbEvbEybEybKhbKibKjbKkbKkbKkbKlbKmbJsbJtbKnbKobKobKpbKqbKrbJsbKsbKtbKubENbKvbKwbKxbKybENbENbENbENbKzbKAbKBbKCbKDbKEbKEbKFbKGbKHbKIbKGbENaagaagaagaagaagaagaaabKxbIAbIBbENbEPbEQbKJbESbKKbGebKLbKMbKNbKObKPbGebGebGebKQbKRbKSbESbCxbKTbBcbKUbKVcjPciXciXciXciXckKclpcloclqbNSbNScDFbLfbLgbLhbLibLjbLjbLjbLkbLjbLjbLjbLlbLmbLnbLfaAsbDjarubGBbLobIYbJVbJVbLpbLqbLrbLsbLtbLubLvbHVbHVbLwbLxbLybKbbLzbHVbLAbLBbKfbKfbGHaaaaagaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDGcDzcCbcCbcDzcBWcDHcDAcDAcDCcBWcDIcDEcDEcDJcClcBHcDKbDpbzvbzvbzvbzvcBDbCkbwBbwBbFnbxTbFobFDbFzcmjcmlcmkbEybLGbLHbLIbLJbLKbLLbLMbLMbLMbLMbLNbLObJtbLPbLQbJtbJubJtbLRbJsbLSbLTbLUbENbLVbLWbLXbLYbLZbMabMbbMcbMdbMebMfbMgbMfbMfbMfbMhbMfbMibKGbKGbMjaagbMkbMkbMkbMkbMkaagbKxbMlbMmbENbEPbEQbJHbESbMnbHqbHrbHrbHsbMobHrbHrbHsbMpbESbETbESbESbMqbMrbMsbMtbMrbMrbMubMvbMvbMwbMxbMvbMybMzbNSclpcmAbLfbMDbMEbLfbMFbMGbLjbLjbLjbLjbMHbLfbMIbMJbLfaAsbDjarubGBcDLbMLbMLbMLbLrbMMbGBbGBbLwbHVbLubMNbHVbLwbMObMPbMQbHVbHVbKcbHVbHVbKfbGHbGHaagaagaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDNcDMcDOcCbcDzcBWcDQcDPcDAcDCcBWcDIcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbMRbMSbwBcDRbxTbFobFDbFzcmLcmMbFzbMVbLMbMWbMXbMYbMZbNabNbbNcbNcbNdbNebJsbNfbJvbJtbJtbJubJtbNgbJsbNhbLTbNibENbNjbNkbNlbNmbNnbNobNpbNqbNrbNsbNtbNubKGbNvbNwbNxbNwbNybNwbNzbNAbNBbNCbNDbNEbNFbMkaagbKxbIAbMmcDSbEPbEQbNHbESbNIbIFbIGbIGbIIcDTbIGbIGbIIbNKbMrbNLbNMcmNbNObNPbNQbNQbNQbNRbNSbNSbNSbNSbNTbNSbNUbMzbNSclpcDUbLfbNVbNWbLibLjbLjbLjbLjbLjbLjbLjbLlbNXbNYbLfaAsbDjarubGBbNZbOabObbOcbOdbOdbGBbHVbLwbHVbLzbHVbLzbLwbLxbLybKbbLzbHVbLzbHVbLzbKfbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDNcDMcDOcCbcDzcBWcDQcDPcDAcDCcBWcDIcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbMRbMSbwBcDRbxTbFobFDbFzcmLcmMbFzbMVbLMbMWbMXbMYbMZbNabNbbNcbNcbNdbNebJsbNfbJvbJtbJtbJubJtbNgbJsbNhbLTbNibENbNjbNkbNlbNmbNnbNobNpbNqbNrbNsbNtbNubKGbNvbNwbNxbNwbNybNwbNzbNAbNBbNCbNDbNEbNFbMkaagbKxbIAbMmcDSbEPbEQbNHbESbNIbIFbIGbIGbIIcEtbIGbIGbIIbNKbMrbNLbNMcmNbNObNPbNQbNQbNQbNRbNSbNSbNSbNSbNTbNSbNUbMzbNSclpcDUbLfbNVbNWbLibLjbLjbLjbLjbLjbLjbLjbLlbNXbNYbLfaAsbDjarubGBbNZbOabObbOcbOdbOdbGBbHVbLwbHVbLzbHVbLzbLwbLxbLybKbbLzbHVbLzbHVbLzbKfbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCjcBLcBLcBLcBNcBNcCwcBOcDVcDXcDWcBWcDIcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbOebxTbFobFDbFzcnzcnIcnHbOibOjbOkbOlbOmbOnbOobOpbOqbOrbOrbOrbOrbJtbOsbOtbOubOvbOwbOwbOxbOybOzbOAbENbOBbOCbODbOEbOFbOGbOHbKxbOIbOJbOKbOLbOMbONbKGbOObOPbOQbKGbORbMjaagbOSbOTbNFbOUbMkaagbKxbIAbMmcDYbEPbEQbNHbEUbGebIFbIGbOWbIIbOXbOYbOZbPabPbbPcbPdbPebNQbNQbNQbNQbNQbNQbMrbPfbPgbPhbPibPjbPkbPlbPmcnJclpcmAbLfbPobPpbLfbPqbPqbPqbPqbPqbPqbPqbLfbPrbPsbLfbPtbDjbPubGBbNZbPvbPwbPxbPybPybPzbPAbPBbPCbPDbPDbPDbPEbPFbPGbPHbPDbPDbPDbPIbPJbHVbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzucCjcBNcBLcBLcBTcDZcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbJjbxTbFocnKbFzbFzcnMcnLbPNbPObPObPObPPbPQbPRbOqbOqbPSbPTbPUbOrbJtbOsbPVbPWbPXbJtbPYbJsbPZbQabQbbENbENbENbENbENbENbENbENbENbQcbQdbMfbMfbMibONbQebQfbQgbQhbQibQjbQkbQlbNCbQmbNFbNFbMkaagbKxbIAbMmcEabEPbEQbNHbESbGebIFbIGbIGbIIbQnbQobQobQpbQqcEccEbcEdbQubQvbQubQwbQxbQybMrbMrbMrbMrbMrbMrbMrbQzbQAbEXbEXbEXbLfbQBbPpbLfbQCbQDbQDbQDbQDbQDbQCbLfbPrbQEbLfaddbDjaddbGBbQFbQGbMMbOdbPybPybPzbJXbQHbQIbQHbQHbQHbJYbJZbKabQJbQHbQHbQHbQIbQKbHVbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCjcBLcBNcBNcBLcBZcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbQLbxTbQMcnNbFzcnOcnPcnHbQRbLGbQSbQTbQUbQVbQWbQXbQYbQYbQZbRabRbbRcbRdbOwbOwbRebJtbRfbJsbJsbJsbFDbEyaagaagaagaagaagaagaagbMjbOIbOJbKGbKGbRgbRhbRibKFbRjbRkbRlbKFbMjaagbMkbMkbMkbMkbMkaagbKxbIAbMmbENbEPbEQbJHbESbGebJIbJKbJJbJLbJIbJJbJJbJLcEebRnbRobRpbRqbNNbQubNQbRsbRtbMrbRubRvbRwbRxbRybMrcnQcoecodcogcofbLfbLfbLibLfbREbRFbRFbRFbRFbRFbRGbLfbRHbRIbLfbRJbRKbRJbGBbGBbGBbGBbOdbPybPybGBbHVbHVbHVbLzbHVbLzbLwbLxbLybKbbLzbHVbLzbHVbLzbHVbHVbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacEfcBHcDKbzuaaaaaaabWaaQbzvcBDbCkbwBbwBbRLbxTbRMbFDconcmLbFzconbRNbRObRObRPbOmbGVbRQbOqbRRbRSbRTbRUbRVbRWbRXbJtbJtbJubJtbRYbJsbRZbSabSbbEyaagbMkbMkbMkbMkbMkaagbMjbOIbOJbKGbKGbScbSdbSebKGbSfbSgbShbSibNAbNBbNCbSjbSkbSkbMkaagbKxbIAbIBbENbEPbEQbJHbSlbSmbSnbSobSpbSqbGebGebSrbSsbStbMrbSubSvbSwbPdbPdbPdbSxbSybSzbSAbSBbSCbSDbSEbSzcoIcoKcoJcoMcoLbLfbSKbSLbSLbSMbSNbSNbSNbSNbSNbSObSPbSQbSRbLfbPybSSbPybPybPybPybPybPybPybPybGBbGBbHVbHVbHVbSTbHVbLwbMObSUbMQbHVbHVbHVbSVbHVbHVbGHbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFaaFaaFaaFaaFcEgbSXbSXbSXbSYbSYbSXbSXbSXbSXbSXbxTbtEbSZbxTbwBbTabxTbTbbFDconcoQbFzcoYbEybOjbOkbOlbOmbTebTfbTgbThbTibTibTjbTkbTlbTmbTnbTobTpbJtbJtbTqbQabTrbTsbEyaagbMkbTtbTtbTubTvbTwbTxbTybTzbKGbKGbRgbKGbRhbKGbTAbTBbONbTCbMjaagbOSbTDbTEbTFbMkaagbKxbIAbIBbENbJGbEQbJHbESbESbESbESbESbESbTGbESbESbESbESbMrbTHbTIbTJbTKbTLbTMbTNbTObTPbTQbTRbTQbTSbTTbTUcoZcpKcpJcpMcpLbLfcEhcEhcEjcEicEkcEkcElcEkcEkcEicEicEmbUgbLfbPybUhbUibUibUjbPybPybPybPybUkbOdbGBbGBbGBbUlbGBbGBbUmbLxbJfbKbbLzbHVbHVbHVbHVbHVbGHaaaaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFaaFaaFaaFaaFcEgbSXbSXbSXbSYbSYbSXbSXbSXbSXbSXbxTbtEcEubxTbwBbTabxTbTbbFDconcoQbFzcoYbEybOjbOkbOlbOmbTebTfbTgbThbTibTibTjbTkbTlbTmbTnbTobTpbJtbJtbTqbQabTrbTsbEyaagbMkbTtbTtbTubTvbTwbTxbTybTzbKGbKGbRgbKGbRhbKGbTAbTBbONbTCbMjaagbOSbTDbTEbTFbMkaagbKxbIAbIBbENbJGbEQbJHbESbESbESbESbESbESbTGbESbESbESbESbMrbTHbTIbTJbTKbTLbTMbTNbTObTPbTQbTRbTQbTSbTTbTUcoZcpKcpJcpMcpLbLfcEhcEhcEjcEicEkcEkcElcEkcEkcEicEicEmbUgbLfbPybUhbUibUibUjbPybPybPybPybUkbOdbGBbGBbGBbUlbGBbGBbUmbLxbJfbKbbLzbHVbHVbHVbHVbHVbGHaaaaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeNahLahLahLbSXbSXbSXbUnbSXbUobUpbUqbUqbUqbUqbUqbUqbUqbUrbUsbUtbExbExbExbUubUubUvbUubUwbUwbEybFDbFDbFDbUxbUybRQbOqbUzbUAbUBbUCbUDbTlbOsbUEbUFbPXbJtbUGbUHbUHbUHbEybEyaagbMkbUIbUJbUKbOSaagbMjbULbKGbUMbUNbSebUObScbUPbTAbTBbUQbURbQkbQlbNCbUSbSkbSkbMkaagbKxbUTbUUbENbEPbEQbJHbUVbUWbUXbUYbUZbVabVbbUVbVcbVdbVcbMrbMrbMrbMrbMrbMrbMrbMrbMrbMrbVebVfbVgbVhbVibUVbUVbUVbUVbUVbUVbUVbUVbUVbLfbVjbVlbVlbVlbVlbVlbVjbLfbVmbVnbLfbPybVobPybPybPybPybOdbOdbOdbOdbOdbOdbGBbVpbVqbVrbGBbLwbMObVsbVtbHVbHVbMNbHVbHVbGHbGHaaaaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVubUnbUnbVvbVwbVxbVybVzbVzbVzbVzbVzbVzbVzbVAbUtbVBbVCbUubVDbVEbVFbVGbVHbVIbEybLGbVJbQTbQUbLMbVKbOqbOqbVLbUBbVMbOrbVNbVObVPbVQbVRbVSbVTbVUbVVbVWbVXbEyaagbMkbTtbVYbVZbWabTwbTxbWbbKGbWcbUNbWdbWebScbUPbTAbTBbONbWfbMjaagbMkbMkbMkbMkbMkaagbKxbIAbIBbENbWgbEQbJHbWhbVbbWibWibVbbWibVbbUVbWjbWkbWlbUVbWmbWnbWobWpbWqbWrbWsbWtbUVbWubMrbWvbWwbWxbUVbWybWzbWAbWBbUVbWzbWAbWBbLfbWCcpNcpObWFbWGbWHbWIbLfbWJbWKbWLbWMbWNbWObPybPybWPbOdbWQbWQbWQbWQbWQbGBcqibWSbWTbGBbWUbMObHVbHVbHVbHVbWVbWWbGHbGHaaaaaaaaaaagaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXcEncEnbUnbUnbSXbVwbWXbSXbWYbWZbWZbWZbXaaaaabWaTwbXbbXcbXdbUubXebXfbXfbXgbXhbXibEybGVbGVbXjbXkbGVbXlbXmbOqbXnbUBbXobOrbXpbXqbKobKobKobKobXrbXsbXtbXubXvbEyaagbMkbMkbMkbMkbMkaagbMjbXwbXxbXybUNbXzbXAbXBbUPbSfbSgbShbXCbNAbNBbNCbXDbXEbXFbMkaagbKxbIAbMmbENbEPbEQbJHbUVbVbbVbbVbbVbbVbbXHbUVbXIbXJbXIbUVbWibWibWibVbbVbbXKbXLbXLbXMbXNbXLbXNbXObXPbUVbXQbXRbXSbXRbUVbXTbXRbXSbLfbWCbWCbWCbWCbWCbWCbWCbLfbXUbXVbXWbXWbXXbXYbPybPybXZbYabWQbWQbWQbWQbWQbGBcqBcqAcqCbGBbLwbYebHVbHVbHVbHVbGHbGHbGHaaaaaaaaaaaaaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbYfcEncEnbUnbYgbSXbVwbWXbSXbYhbYibYjbYkbYhbYlbYlbYlbYmbYnbYobUubYpbYqbYrbYsbYtbYubEybOjbOkbOlbYvbYwbYxbGRbOqbYybUBcEobOrbYzbYAbYAbYAbYBbYBbYCbUHbUHbYDbXvbEyaagbMkbYEbYEbYFbYGbNBbNAbYHbYIbYJbXxbYKbKGbYKbKGbTAbTBbONbYLbMjaagbOSbYMbYNbYObMkaagbKxbIAbMmbYPbEPbEQbJHbYRbYSbYTbYTbYTbYTbYTbYUbYVbYWbYWbYWbYWbYWbYWbYWbYWbYXbYYbYWbYWbYWbYWbYWbYZbZabUVbZbbZcbZdbUVbUVbZbbZebZdbLfbLfbLfbLfbLfbLfbLfbLfbLfbZfbZgbPybPybZhbZibZjbZkbXZbYabWQbWQbWQbWQbWQbOdbOdbOdbOdbGBcqDbGCbGBbGBbGBbGBbGHaaaaaaaaaaaaaaaaagaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbZobUnbUnbUnbZpbSXbZqbZrbSXbZsbZtbZtbZubZvbZwbZxbZwbZybZzbUubUubUubUubUubZAbZBbUwbEybFDbFDbFDbEybZCbZDbZEbZFbZFbZFbZGbZFbZHbZIbZHbZJbZHbZHbUHbUHaaabZKbZLbZMaagbMkbYEbZNbZObOSaagbMjbZPbNvbZQbTAbZRbKGbZSbZTbTAbTBbZUbZVbQkbQlbNCbZWbXEbXEbMkaagbKxbIAbMmbZXbEPbZYcqEcaacabcaccadcaecaecaecaecaecaecaecaecaecaecaecaecaecafcagcahcahcahcahcahcaicajcakbYZbYWcalbYWbYWbYZcambZabVbcancaocapcaqbVbbVbbVbbVbcarcascatcaucavcawcaxcaybPycazbWQbWQbWQbWQbWQcazcaAcaBbOdcaCcaDcaEbZlcaFcaGbZlaaaaaaaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbUnbUnbUncaHbUnbUnbSYbVwbWXbSYcaIcEpcaJcaKcaLbYlbYlbYlcaMcaNcaOcaPcaQcaRcaScaTcaUcaVcaWcaXcaYcaZcbacbbcbccbdcbecbfcbgcbhcbicbjcbkcblcbmcbncbocbpaaaaaabZKbZLbZMaagbMkbYEcbqcbrcbsbQlbQkcbtcbucbvbTAcbwcbxcbycbzbTAbTBbONbKGbMjaagbMkbMkbMkbMkbMkaagbKxbIAbMmbENbEPcbAbJHbUVcbCbVbcbDcbEcbFbUVbUVbUVbUVbUVbUVcbGbVbbVbbVbbVbcbHcbIbVbbVbcaqcbJbVbcbKcbLcbMcbNcahcahcahcbMcbNcbOcajbYWbYWcbPbYWbYWbYWbYWbYWbYYcbQbZgcbRcbScbTcbTcbUcbVbXZbYabWQbWQbWQbWQbWQbYacbWcbXbOdcaCcbYcaEbZlcbZcbZbZlbZlaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbZobUnbUnbUnbZpbSXbZqbZrbSXbZsbZtbZtbZubZvbZwbZxbZwbZybZzbUubUubUubUubUubZAbZBbUwbEybFDbFDbFDbEybZCbZDbZEbZFbZFbZFcEvbZFbZHbZIbZHbZJbZHbZHbUHbUHaaabZKbZLbZMaagbMkbYEbZNbZObOSaagbMjbZPbNvbZQbTAbZRbKGbZSbZTbTAbTBbZUbZVbQkbQlbNCbZWbXEbXEbMkaagbKxbIAbMmbZXbEPbZYcqEcaacabcaccadcaecaecaecaecaecaecaecaecaecaecaecaecaecafcagcahcahcahcahcahcaicajcakbYZbYWcalbYWbYWbYZcambZabVbcancaocapcaqbVbbVbbVbbVbcarcascatcaucavcawcaxcaybPycazbWQbWQbWQbWQbWQcazcaAcaBbOdcaCcaDcaEbZlcaFcaGbZlaaaaaaaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbUnbUnbUncaHbUnbUnbSYbVwbWXbSYcaIcEpcaJcaKcaLbYlbYlbYlcaMcaNcaOcaPcaQcaRcaScaTcaUcaVcaWcaXcaYcaZcbacbbcbccbdcbecbfcbgcEwcbicbjcbkcblcbmcbncbocbpaaaaaabZKbZLbZMaagbMkbYEcbqcbrcbsbQlbQkcbtcbucbvbTAcbwcbxcbycbzbTAbTBbONbKGbMjaagbMkbMkbMkbMkbMkaagbKxbIAbMmbENbEPcbAbJHbUVcbCbVbcbDcbEcbFbUVbUVbUVbUVbUVbUVcbGbVbbVbbVbbVbcbHcbIbVbbVbcaqcbJbVbcbKcbLcbMcbNcahcahcahcbMcbNcbOcajbYWbYWcbPbYWbYWbYWbYWbYWbYYcbQbZgcbRcbScbTcbTcbUcbVbXZbYabWQbWQbWQbWQbWQbYacbWcbXbOdcaCcbYcaEbZlcbZcbZbZlbZlaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbUnbUnbUncaHbUnbUnbSYbVwbWXbSYbYhccaccaccbbYhaaaabWbdicccbUubUuccdcceccfccfccfccgcchcciccfccfccjcckcclccmccncbeccoccpccqccrccscctccuccvccwccxcbpaaaccybZKcczbZMaagbMkbMkbMkbMkbMkaagbMjccAbONcbwccBccCbKGbYKbKGbSfbSgbShccDbNAbNBbNCccEccFccFbMkaagbKxbIAbIBbENbEPcbAbJHccGccGccGccGccGccGccGaagaagaagaagbUVbUVbUVbUVbUVbVbcbHcbIbVbccHccHccHccHccHccIccJccKccHccHccHccLbVbccMcbLcbMcahcbLcahcbMcahcahcahcbLccNccOccPccQcbTcbTcbUcbVbXZbYabWQbWQbWQbWQbWQbYaccRcbXbOdcaCcbYcaEccScbZcbZcbZccTaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVvbSXbSXbSXbSXbSXccUccVbSXbZsccWccaccXbYhbYlbYlbUuccYccZcaVcdacdbcdccddcdecdecdfcdgcdecdecdhbUwcdicdjcdkcdlcdmcdncdocdpcbpcdqcdrcdscdtcducbpaaaccycdvbZLbZMaagbMkcdwcdwcdxbYGbNBbNAcdycdzcdAcdBbKGbKGcdCcdDcdEbOQbONcdFbMjaagbOScdGcdHcdIbMkaagbKxbIAbIBbENbJGcbAcdJcdKcdLcdMcdNcdOcdPcdKcdQcdQcdQaaabUVcdRcdScdTcdUcdVcdWcdXcdYccHcdZceacebccHceccedceecefcegccHcehbVbceicejcekbVbcelbUVcemcencencenceobOdcepceqcercescescetcbVbPycazbWQbWQbWQbWQbWQcazbPybPybOdcaCcbYcaEbZlcbZcbZcbZccTaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVvbSXbSXbSXbSXbSXccUccVbSXbZsccWccaccXbYhbYlbYlbUuccYccZcaVcdacdbcdccddcdecdecdfcdgcdecdecdhbUwcdicdjcdkcdlcdmcdncdocdpcbpcdqcdrcdscdtcducbpaaaccycdvbZLbZMaagbMkcdwcdwcdxbYGbNBbNAcdycdzcdAcdBbKGbKGcdCcdDcdEbOQbONcdFbMjaagbOScdGcdHcdIbMkaagbKxbIAbIBbENbJGcbAcdJcdKcdLcdMcdNcExcdPcdKcdQcdQcdQaaabUVcdRcdScdTcdUcdVcdWcdXcdYccHcdZceacebccHceccedceecefcegccHcehbVbceicejcekbVbcelbUVcemcencencenceobOdcepceqcercescescetcbVbPycazbWQbWQbWQbWQbWQcazbPybPybOdcaCcbYcaEbZlcbZcbZcbZccTaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSYbVwbWXbSYbYhceuccaccacevbZwbZxbZwcewcexceycezceAceBceCceBceDceEceCceFceGceHbUwbUwcbecbeceIcbeceJcbecbpcbpceKceLceMceNceOcbpaaaccycePbZLbZMaagbMkcdwceQceRbOSaagbMjceSbONcbvceTceUceUceUceUcdBbTBceVceWbQkbQlbNCceXccFccFbMkaagceYceZcfaceYbEPcfbcfccfdcfecffcfgcfhcfhcficfjcfkcdQaaabUVcflcfmcfncfocfpcfqcbIcbCccHcfrcfrcfrccHcfscftcfuccHccHbUVbZbcfvcfwcfxbZbcfybZdbUVcfzcfAcfAcfAcEqbOdcfCcfDcfEbPybPybPycbVbXZbYabWQbWQbWQbWQbWQbOdbOdbOdbOdcfFcfGcaEbZlcfHcfIbZlbZlaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSYbVwbWXbSYbYhcfJcfJcfJbYhbYlbYlbUucfKcfLcfMcfNcfOcfPcfQcfNcfOcfRcfQcfNcfOcfSbUwbUwcbecfTcfUcfVcfWcfXcfYcbpcfZcgacgbceNcgccbpaaaccycePcgdbZMaagbMkcdwcgecgfcbsbQlbQkcggcbucbwcghcghcgicgjcgjcgkbOQbONcglbMjaagbMkbMkbMkbMkbMkaagceYcgmcgncgocgpcgqcgrcdKcgscgtcgucfhcgvcdKcgwcgxcdQaaabUVbUVbUVbUVbUVbVbcbHcbIbVbccHcgycgzcgAccHcfscfrcfrcgBcgCbUVcgDcfmcgEbUVcgDcfmcgEbUVcgFcfAcfAcfAcgGbOdcgHcgIcgJcgKcgLcgMcgNbXZbYabWQbWQbWQbWQbWQbOdcfFcgOcgPcgQcgRcgSbZlccTccTbZlaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSXcgTbZrbSXcgUcgVcgVcgVcgWaaaabWbdicgXcgYcgZcgXchachbchccfNchdchechfcfNchgchhchibUwcbechjcfUchkcfWccqcfYcbpcbpcbpcbpcbpcbpcbpaaaccycePchlbZMaagbMkbMkbMkbMkbMkaagbMjbOIchmchnchochochochochochpchqchrchsbENaagaagaagaagaagaagaagceYcErchuchvchvchwchxchychzchAchBcfhchCcdKcfjchDcdQaaabUVcdRcdScdTcdUchEcdWcdXchFccHcfrcfrcfrccHcfscfrcfrccHccHbUVcflcfmchGbUVcflcfmchGbUVchHcfAchIchJchKbOdbOdbOdbOdbOdbOdchLbOdbOdbOdbWQbWQbWQbWQbWQbOdcbYchMchNchOcgSaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7169,8 +7176,8 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbUnbUnbUnbSXbSXaaabSXbVwbWXbSXbUnbUncjLbSXaaacjMcjNcjOciVcqZcjQcjRbUwcjScjScjScjScjTcjUcjVchbcjWbUwcjXcbecjYccqcjZckackbccqckccbeaaaccyckdckeccyckfckgckhckickgckgckgckgckjckkcklbZMckmcknckockpckqckrckscktckuckvckwckxckycrpckzckAckBckCckDckEckFckGckGckHcjmckIckJcrqcjrckLckMckMckMckNcjraagaaaaaaaaaccTcbZckOckPckPckQckRckSckTckUckVckWckWckWckWckWckXckYckZbZlclacbZcbZcbZcbZclbclccldcleclfclfclfchOclgclhclgclgclichOchOchOcljcljcljcljcljcljclkchOchOcgSbZlaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYcEncEnbUnbUnbUnbSXbSXbSXbVwbWXbSXcllbUncjLbSXaaaclmclncrrcrtcrsclrclsbUwcjSchbcltcluclvclwclwclxclyclzclAcbecbecbecbecbecbecbecbecbeaagcjgclBclBclCclDclEclFclGclHclHclIclHclJclKclLclMclNclOclPclQclRclSclSclTclSclSclUclVclScruclSclVclWclXclYclZclZclZclZcmacjmckIcmbcmccmdcmecmfcmfcmgcmhcjraagaaacoBcoBcoBcoBcrCcoBcoBcoBcskcsZcsQcmmcmncmocmpcmqcmrcmscmtcmuckPcmvcmwcbZcmxcbZcmycmzclccaEbZlbZlciFbZlbZlctacmBcmCcmDcmEcmFcmGbZlbZlbZlcmHcmHcmIcmJcmKbZlcuncumcumcuqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUncmOcmPbUnbUnbVvbUnbUnbVwcmQbVybVycmRbSXbSXaaacgXcgXcgXcgXcurclrcmSbUwcmTcmUcmVcmWcmXcjScjScmYcmZbUwbUwbUwaaaaagaagaagaagaagaagaagaagccycnacnbccycnccndccycneccyccycnfclBcngcnhcnicnjcnkcnlcnmcnncnoclZcnpcnpcnpcnpcnpcnpcnqcnqcnqcnqcnrcnscntcnucnvcnwcnxcnycjmcvecnAcnBcjrcnCcnDcnEcnFcnGcjraagaaacoBcxIcvgcxKcxJcxMcxLcxOcxNcxQcxPcnRcbZcnScbZcbZcnScbZcaEcnTckZbZlcbZcnUcnVcbZcnWclbclccaEbZlcnVcbZcbZbZlcnXcnYcnZcoacobaaacocaagaaabZlbZlbZlbZlbZlcbZcmKcxScxRcxUcxTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUncohbUnbUnbUnbSXbSXbSXcoicojbUqcokcolcombSXaaaaagaagaagcgXcxVcoocopbUwcoqcoqcorcoscotcoucoucovcowcoxcoxbUwaaaccyccyccyccyccyccyccyccyccyccyccyccycnccndcoycozcoAccycnfclBccyccyccybZMbZMbZMclZclZclZclZcjmcjmcjmcjmcjmcjmcjmcjmcjmcoBcoCcoDcjmcjmcjmcjmcjmcjmcjmcoEcjpcoFcjrcoGcmdcoGcoGcjrcjrcoHcoHcoBcxWcmccmccmccxXcqwcqwcxYcxZcmccoNcoNcoNcoNcoNcoNcoNcoOcoPcoPcoPclfclfcoRcoScoTcoUcoVcoWciFcbZcbZcbZbZlcoXcoXcoXcoXcobaaacocaagaaaaagaaaaaaaaabZlbZlbZlcyacumcumcybaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbUnbUnbUnbSXbSXaaabSXbSXbSXbSXcoicpabWXbSXbSYbSYbSXaagcgXcgXcgXcgXbUwcpbcpccpdcdecpecjScjScjScpfcmUcpgbUwaagcjgcphcpiccycpjcpkcpkcpkcpkcpkcpkcpkcyccndcpmcpnclBccycnfclBccycnbclBclBclBbZMcpocpocppcpqcjmcprcprcpscpscpscptcptcpucpvcpwcpxcpycpzcpAcpAcpBcpCcpAcpxcpDcpAcpEcpAcpAcpAcpFcpGcpHcpAcpIcoBcmccydcmccyecyfcrhcrhcygcyhcmccoNcpPcpQcpRcpScpRcpScpRcpTcpUcoNcbZcbZcbZcbZcbZcpVcpWbZlbZlbZlbZlbZlbZlaaaaaaaaaaaaaadaaacoccoccoccoccoccpXaaaaaaaagbZlbZlbZlbZlaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUncohbUnbUnbUnbSXbSXbSXcoicojbUqcokcolcombSXaaaaagaagaagcgXcxVcoocopbUwcoqcoqcorcoscotcoucoucovcowcoxcoxbUwaaaccyccyccyccyccyccyccyccyccyccyccyccycnccndcoycozcoAccycnfclBccyccyccybZMbZMbZMclZclZclZclZcjmcjmcjmcjmcjmcjmcjmcjmcjmcoBcoCcoDcjmcjmcjmcjmcjmcjmcjmcoEcjpcoFcjrcoGcmdcoGcoGcjrcjrcoHcoHcoBcxWcmccmccmccxXcqwcqwcxYcxZcmccoNcoNcoNcoNcoNcoNcoNcoOcoPcoPcoPclfclfcoRcoScoTcoUcoVcoWciFcbZcbZcbZbZlcoXcoXcoXcoXcobaaacocaagaaaaagaaacEyaaabZlbZlbZlcyacumcumcybaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbUnbUnbUnbSXbSXaaabSXbSXbSXbSXcoicpabWXbSXbSYbSYbSXaagcgXcgXcgXcgXbUwcpbcpccpdcdecpecjScjScjScpfcmUcpgbUwaagcjgcphcpiccycpjcpkcpkcpkcpkcpkcpkcpkcyccndcpmcpnclBccycnfclBccycnbclBclBclBbZMcpocpocppcpqcjmcprcprcpscpscpscptcptcpucpvcpwcpxcpycpzcpAcpAcpBcpCcpAcpxcpDcpAcpEcpAcpAcpAcpFcpGcpHcpAcpIcoBcmccydcmccyecyfcrhcrhcygcyhcmccoNcpPcpQcpRcpScpRcpScpRcpTcpUcoNcbZcbZcbZcbZcbZcpVcpWbZlbZlbZlbZlbZlbZlaaaaaaaaaaaaaadaaacoccoccoccoccoccocaaaaaaaagbZlbZlbZlbZlaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSYbSYbSYbSXaaaaaaaaaaaaaaabSXcpYbVwbWXbVvbUncpZbSXaagaagaagaagaagbUwcqacdecqbcqccpecjScjScmUcjScjScqdbUwaagcjgclBcqeccycnccqfcqgcqgcqhcqhcqhcnjcyicqjcqkcozclBccycnfclBccyclBcqlcqlclBbZMcqmcqmcqncqocjmcqpcqqcqqcqqcqqcqrcqqcpucqscqtcqucqvcqwcqwcqwcqwcqwcqwcqxcqycqwcqwcqwcqwcqwcqwcqvcqwcqwcqzcoBcykcyjcylcmccymcmccyocyncyqcypcoNcqIcqJcqKcqJcqKcqJcqKcqJcqLcoNcbZcbZcbZcbZbZlcpVcpWaaaaaaaaaaagaagaagaagaagaagaagaadaaaaaaaagaaaaagaaacocaaaaaaaagaaaaagaaaaadaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVwbWXbSXcqMcqNbSXbSXbSYbSXbSXcqObUwcqPcqbcqQcqRcpecqScqTcqUcqVcjScqWbUwaagcjgcqXclBccycnccqYccyccyccyccyccybZMcyrbZMbZMbZMcraccycnfclBccyclBcrbcrccrdbZMbZMbZMbZMbZMbZMcrecqqcqqcpscrfcptcptcpucqscrgcrhcricrhcrhcrhcrjcrkcrkcrkcrlcrkcrkcrkcrmcrhcrhcricrhcrncrocoBcvfcvfcytcyscyvcyucytcxNcywcytcoNcrvcrwcrxcrwcrxcrwcrxcrwcrycoNcbZcrzbZlccTbZlcpVcpWaAOaFWaFWaFWaAOaaaaaaaaaaaaaaaaadaaacrAcrAcrAcrAaaacocaaacrAcrAcrAcrAaaaaadaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbVwcmQcrBbSXbSXbSXcyxcrDcrEbSYaagbUwbUwcrFcrFcrFcrFcrFcrFcrFcrFcrFbUwbUwaagccycrGcrHcrIcrJcrKccyaaaaaaaagaaaaEOcrLaGSaaabZMbZMbZMcrMcrNcneclBcoycrOcrdbZMcrPcrQcrRcrSbZMcrTcrTcrTcrTcrTcrTcrTcrUcrVcrWcqwcrXcrYcrZcmccsacoFcoBcsbcoBcsbcoBcoFcsccmccsdcsecmccsfcsgcshcshcsicshcshcsjcshcshcyycslcsmcsncsocspcsqcsrcsscstcsucsvcswcoNbZlccTbZlaaabZlcsxcsycszcszcszcszcsAaGSaaaaaaaaaaaeaadaaacsBcsCcsCcsCcsDcoccsEcsFcsFcsFcsGaaaaadaaeaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa From ccddcdd6dd812ba477cd36bd623797da130bbf12 Mon Sep 17 00:00:00 2001 From: Strathcona Date: Tue, 20 Oct 2015 17:32:35 -0400 Subject: [PATCH 21/25] Cleaned up some cameras, added back some old loot --- _maps/map_files/DiscStation/z4.dmm | 107 +++++++++++++++-------------- 1 file changed, 57 insertions(+), 50 deletions(-) diff --git a/_maps/map_files/DiscStation/z4.dmm b/_maps/map_files/DiscStation/z4.dmm index 1717993cfef..fec3df337ae 100644 --- a/_maps/map_files/DiscStation/z4.dmm +++ b/_maps/map_files/DiscStation/z4.dmm @@ -10,7 +10,7 @@ "aj" = (/turf/simulated/wall,/area/djstation) "ak" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/djstation) "al" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) -"am" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) +"am" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "an" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "ao" = (/turf/simulated/floor/plating/airless,/area/djstation) "ap" = (/obj/machinery/telecomms/relay/preset/ruskie,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating/airless,/area/djstation) @@ -126,7 +126,7 @@ "cv" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) "cw" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/derelict/medical/chapel) "cx" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) -"cy" = (/obj/structure/table/wood,/obj/effect/decal/cleanable/blood/gibs/core,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) +"cy" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/space) "cz" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) "cA" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "cB" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/djstation) @@ -203,7 +203,7 @@ "dU" = (/turf/simulated/wall,/area/derelict/bridge) "dV" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) "dW" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) -"dX" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = 30; pixel_y = 0},/obj/machinery/camera{c_tag = "Bar"; dir = 8; network = list("SS13")},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) +"dX" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "dY" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "delivery"; name = "floor"},/area/derelict/crew_quarters) "dZ" = (/turf/simulated/floor/plasteel/airless{icon_state = "vault"; dir = 8},/area/derelict/crew_quarters) "ea" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) @@ -288,7 +288,7 @@ "fB" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) "fC" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "green"},/area/derelict/crew_quarters) "fD" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) -"fE" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) +"fE" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "fF" = (/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "fG" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "fH" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) @@ -296,7 +296,7 @@ "fJ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/space) "fK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "fL" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) -"fM" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) +"fM" = (/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "fN" = (/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "escape"},/area/derelict/hallway/primary) "fO" = (/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warning"},/area/derelict/hallway/primary) "fP" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/derelict/bridge) @@ -312,7 +312,7 @@ "fZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/crew_quarters) "ga" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) "gb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) -"gc" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/derelict/medical/chapel) +"gc" = (/obj/structure/cultgirder,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "gd" = (/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/derelict/medical/chapel) "ge" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "gf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) @@ -377,7 +377,7 @@ "hm" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) "hn" = (/obj/item/ammo_casing/c45,/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) "ho" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) -"hp" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) +"hp" = (/obj/item/weapon/melee/cultblade,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "hq" = (/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/plating/airless,/area/derelict/hallway/primary) "hr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/derelict/hallway/primary) "hs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) @@ -474,7 +474,7 @@ "jf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "jg" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "jh" = (/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "warnwhite"},/area/derelict/secret) -"ji" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warnwhite"},/area/derelict/secret) +"ji" = (/obj/effect/decal/cleanable/blood/old,/obj/item/clothing/suit/cultrobes,/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/derelict/medical/chapel) "jj" = (/obj/item/weapon/screwdriver,/turf/simulated/floor/plating/airless,/area/derelict/bridge) "jk" = (/obj/machinery/gravity_generator/main/station{on = 0},/turf/simulated/floor/plating/airless,/area/derelict/bridge) "jl" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/turf/simulated/floor/carpet,/area/derelict/bridge) @@ -484,7 +484,7 @@ "jp" = (/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "whiteblue"},/area/derelict/medical) "jq" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "jr" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) -"js" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Medbay Foyer"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) +"js" = (/obj/item/clothing/head/culthood,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "jt" = (/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 8},/area/derelict/medical) "ju" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/storage/equipment) "jv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/storage/equipment) @@ -585,7 +585,7 @@ "lm" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "ln" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "lo" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 6},/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "whitecorner"},/area/derelict/secret) -"lp" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Experimentor Lab"; dir = 2; network = list("SS13","RD")},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 2},/area/derelict/secret) +"lp" = (/obj/structure/table/wood,/obj/effect/decal/cleanable/blood/gibs/core,/obj/item/weapon/nullrod,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "lq" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 2},/area/derelict/secret) "lr" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 2},/area/derelict/secret) "ls" = (/obj/structure/closet/emcloset{pixel_x = -2},/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "whitecorner"},/area/derelict/secret) @@ -691,7 +691,7 @@ "no" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/derelict/medical) "np" = (/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 9},/area/derelict/secret) "nq" = (/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 1},/area/derelict/secret) -"nr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 1},/area/derelict/secret) +"nr" = (/obj/item/clothing/head/chaplain_hood,/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "ns" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 1},/area/derelict/secret) "nt" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 5},/area/derelict/secret) "nu" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/derelict/secret) @@ -791,7 +791,7 @@ "pk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) "pl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "pm" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) -"pn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) +"pn" = (/obj/item/clothing/suit/hooded/chaplain_hoodie,/obj/effect/decal/remains/human,/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "po" = (/obj/structure/sign/securearea{pixel_x = -32},/turf/simulated/floor/plasteel,/area/derelict/secret) "pp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/derelict/secret) "pq" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel,/area/derelict/secret) @@ -847,7 +847,7 @@ "qo" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/derelict/secret) "qp" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) "qq" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) -"qr" = (/obj/machinery/camera{c_tag = "Research Division South"; dir = 8; network = list("SS13")},/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel/airless{dir = 9; icon_state = "whitehall"},/area/derelict/secret) +"qr" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = 30; pixel_y = 0},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) "qs" = (/obj/structure/sign/fire,/turf/simulated/wall,/area/derelict/secret) "qt" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "qu" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/simulated/floor/plating/airless,/area/derelict/secret) @@ -872,7 +872,7 @@ "qN" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "qO" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) "qP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) -"qQ" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) +"qQ" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/derelict/medical/chapel) "qR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/derelict/secret) "qS" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/derelict/secret) "qT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = -24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "warnwhitecorner"},/area/derelict/secret) @@ -1049,7 +1049,7 @@ "ui" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 Outlet Pump"; on = 1},/turf/simulated/floor/plasteel/airless{icon_state = "blue"; dir = 6},/area/derelict/singularity_engine) "uj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel/airless{icon_state = "arrival"; dir = 10},/area/derelict/singularity_engine) "uk" = (/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/plasteel/airless{icon_state = "arrival"},/area/derelict/singularity_engine) -"ul" = (/obj/machinery/camera{c_tag = "Atmospherics South East"; dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air Outlet Pump"; on = 1},/turf/simulated/floor/plasteel/airless{icon_state = "arrival"; dir = 6},/area/derelict/singularity_engine) +"ul" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/remains/human,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "um" = (/obj/machinery/atmospherics/components/unary/tank/toxins{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "un" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "plasma tank pump"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "uo" = (/obj/machinery/atmospherics/pipe/manifold4w/general{level = 2},/obj/machinery/meter,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) @@ -1081,7 +1081,7 @@ "uO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{name = "output gas connector port"},/obj/machinery/portable_atmospherics/canister,/obj/structure/sign/nosmoking_2{pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "uP" = (/obj/structure/rack,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "uQ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"uR" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Aft Starboard Solar Access"; dir = 1},/turf/simulated/floor/plating,/area/derelict/storage/equipment) +"uR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) "uS" = (/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/derelict/storage/equipment) "uT" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "uU" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/space,/area/space) @@ -1120,19 +1120,19 @@ "vB" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "yellow"},/area/derelict/singularity_engine) "vC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "n2_in"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/derelict/singularity_engine) "vD" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/derelict/singularity_engine) -"vE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/derelict/singularity_engine) +"vE" = (/obj/item/clothing/head/helmet/space/syndicate/orange,/turf/simulated/floor/plasteel/airless{icon_state = "warnwhite"; dir = 5},/area/derelict/secret) "vF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "o2_in"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/derelict/singularity_engine) "vG" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/derelict/singularity_engine) -"vH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/derelict/singularity_engine) +"vH" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "vI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/derelict/singularity_engine) "vJ" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "air_sensor"; output = 7},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/derelict/singularity_engine) -"vK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/derelict/singularity_engine) +"vK" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/item/clothing/suit/space/syndicate/black/orange,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warnwhite"},/area/derelict/secret) "vL" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "vM" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher,/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "vN" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "incinerator_airlock_exterior"; idSelf = "incinerator_access_control"; idInterior = "incinerator_airlock_interior"; name = "Incinerator Access Console"; pixel_x = 6; pixel_y = -26; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "vO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "vP" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"vQ" = (/obj/structure/bed/stool,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating/airless,/area/derelict/solar_control) +"vQ" = (/obj/structure/table,/obj/item/weapon/pen,/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 2},/area/derelict/secret) "vR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating/airless,/area/derelict/solar_control) "vS" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/airless,/area/derelict/solar_control) "vT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage"; req_access_txt = "11"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) @@ -1188,7 +1188,7 @@ "wR" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/item/weapon/airlock_painter,/turf/simulated/floor/plasteel/airless,/area/derelict/singularity_engine) "wS" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/derelict/atmospherics) "wT" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "Incinerator"; luminosity = 2; on = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/engine/vacuum,/area/derelict/atmospherics) -"wU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 0; pressure_checks = 2; pump_direction = 0},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/engine/vacuum,/area/derelict/atmospherics) +"wU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 1},/area/derelict/secret) "wV" = (/obj/machinery/door/poddoor{id = "auxincineratorvent"; name = "Auxiliary Incinerator Vent"},/turf/simulated/floor/engine/vacuum,/area/derelict/atmospherics) "wW" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "wX" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine) @@ -1331,7 +1331,7 @@ "zE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) -"zH" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior South West"; dir = 8; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) +"zH" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) "zI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) "zJ" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) @@ -1379,6 +1379,12 @@ "AA" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/mineral/bananium/airless,/area/space) "AB" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/mineral/bananium/airless,/area/space) "AC" = (/obj/structure/closet/crate,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/turf/simulated/floor/mineral/bananium/airless,/area/space) +"AD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air Outlet Pump"; on = 1},/turf/simulated/floor/plasteel/airless{icon_state = "arrival"; dir = 6},/area/derelict/singularity_engine) +"AE" = (/obj/item/clothing/head/helmet/space/nasavoid,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) +"AF" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/derelict/storage/equipment) +"AG" = (/obj/item/clothing/suit/space/nasavoid,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) +"AH" = (/obj/structure/bed/stool,/turf/simulated/floor/plating/airless,/area/derelict/solar_control) +"AI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/engine/vacuum,/area/derelict/atmospherics) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -1409,50 +1415,50 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafabacadacadacabafafafaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababajakakajakakajabababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaialamanaiaiaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacakaoaoapaoaoakacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaeaqarananasatauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadadadadakaoaoaoaoaoakadadadadabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaiaiananavaiaiaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacajaoaoawaxayajacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeazaAanalaraBaCaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadadadadakaEaoaFaoaoakadadadadabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaeazaHanananaIaJaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacakaoaoaKaoaoakacacacacabafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaafafafafaaaaaaaaaaaaaaaaaaaLaGaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaeaMaHanananaBaCaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababajaNaOaPaoaQajabababababafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafaaaaaaaaaaaaaaaaaaaaaaaaafafafafafaaaaaaaaaaaaaaaRaLaLaLaaaaahaaaaaaaaaaaaaaaaaaagaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagagaSaiaiaTaralaIaJaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajaUajajajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaVaWaXaWaWaWaYaZbabbbcbdbeaWaVaVaWaWaWaWaVaVaVaVaVaVaVaVafafaaaaaaaaaaaLbfbgbhahaaagaaahbiaaaaaaaabibiagagagagagbjbkbkblbiaaaaaaaaaaaaaaaaaaaaaaaaaaagagbmaianalananaiaiaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajajajajbnbobpbqbrajajajajajajafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafafaVaWaXaWaWaWbsbtbubvbwbxbyaWaVaVaWaWaWaWaVaVaVaWaWaWaVaVaaaaaaaaaabzaaaLbfbgbhagagagagagbiagaaaaaaagbibhbhbhbhbhbhbAbBbAbhaaaaaaaaaaaaaaaaaaaaaaafagaiaibCaiananananbDanaiaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakbEbFbFbFakbpbpbpbpbpakbGbHbIbJakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaVaVaVbKbLbLbLbLbLbLbLbLbLbLbLbMbLbLbLbLbLbLbLbLaWaWaVaVafaaaaaabzbzbzaLbNbAbhbhbObhbhbPbiagagagagagbibhbQbRbSbRbSbSbRaRbhafaaaaaaaaaaaaaaaaaaafafagaianbTbUananbVbUaibWaiaVaVaaaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakbXbFbFbFbYbpbZcabZbpcbcccccccdakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaVaVaVaVcecfcgchcgcgcgcicgcjcgckceclclclclclclclclcmaWaWbhaabzaaaaaLcnaLbNbfcocpcqbNbNbhbhbhbhcrbhbhbhbhbhcsaRctctctctcucsbhafafaaafaaaaaaaaaaaaaaafagaialcvcwcxcyczcwcAanaiaVaVaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakbFcBcCbFakbpcDcEcFbpakcGcHcIcJakafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacecKcLcMcNcOcPcQcRcScTcUceaaaaaaaaaaaaaaclcmaWcVbhaabzbzaRaLcWaLbNbfcobfbNbNcXbhcYcZdadbdbdcdddebhcsaRdfdfdfdfaRbRbhdgdhafafafaaaaaaaaaaaaaaafaiandibUdjdkdlbUaiaiaiaVaVaVaVaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajajdmajbpbpbpbpdnajajajajajajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacecececedodpdqdrdsdtdudpdvdpdwcecececeaaaaaaaaclcmaWaWbAaLaRbNaLbNdxaLbNbfcocobNbNbNdydbdbdbdbdbdbdbdbdzbRdAdfdBdCaRaRbRbhdDahdhdhafaaaaaaaaaaafafafaiaTdEdFdkdkczdFalaidGaVaVdHaVaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafajdIajajdJbpdKdLajaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacedMdNdOdPdpdpdrdpdpdrdpdpdpdQdRdSdTcecedUbiclclcmaWaWbhaLbNdVaLdVdVaRbNbfdWbNbNbNdXbhdbdbdcdcdcdcdbdbdYdZdAdfeaebdfecbRbhedagahdhafafaaaaaaaaaaafagaiandibUdkeebVefanaiegaVaVdHdHaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacajaoaoawaxayajacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeazaAanalaraBaCaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadadadadakaEaoaFaoaoakadadadadabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaeazaHanananaIaJaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacakaoaoaKaoaoakacacacacabafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafaeafaaaaafaaafaaaaaaaaaaaaaaaaafafafafaaaaaaaaaaaaaaaaaaaLaGaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaeaMaHanananaBaCaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababajaNaOaPaoaQajabababababafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafcyaeafaaaaaaafaaaaaaaaaaaaaaaaafafafafafaaaaaaaaaaaaaaaRaLaLaLaaaaahaaaaaaaaaaaaaaaaaaagaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagagaSaiaiaTdXfEaIaJaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajaUajajajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaVaWaXaWaWaWaYaZbabbbcbdbeaWaVaVaWaWaWaWaVaVaVaVaVaVaVaVafafaaaaaaaaaaaLbfbgbhahaaagaaahbiaaaaaaaabibiagagagagagbjbkbkblbiaaaaaaaaaaaaaaaaaaaaaaaaaaagagbmaianalfMgcaiaiaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajajajajbnbobpbqbrajajajajajajafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafafaVaWaXaWaWaWbsbtbubvbwbxbyaWaVaVaWaWaWaWaVaXaVaWaWaWaVaVaaaaaaaaaabzaaaLbfbgbhagagagagagbiagaaaaaaagbibhbhbhbhbhbhbAbBbAbhaaaaaaaaaaaaaaaaaaaaaaafagaiaibCaifManfMfMbDhpaiaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakbEbFbFbFakbpbpbpbpbpakbGbHbIbJakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaVaVaVbKbLbLbLbLbLbLbLbLbLbLbLbMbLbLbLbLbLbLbLbLaWaWaVaVafaaaaaabzbzbzaLbNbAbhbhbObhbhbPbiagagagagagbibhbQbRbSbRbSbSbRaRbhafaaaaaaaaaaaaaaaaaaafafagaianbTbUanjsjibUaibWaiaVaVaaaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakbXbFbFbFbYbpbZcabZbpcbcccccccdakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaVaVaVaVcecfcgchcgcgcgcicgcjcgckceclclclclclclclclcmaWaWbhaabzaaaaaLcnaLbNbfcocpcqbNbNbhbhbhbhcrbhbhbhbhbhcsaRctctctctcucsbhafafaaafaaaaaaaaaaaaaaafagaialcvcwcxlpczcwcAanaiaVaVaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakbFcBcCbFakbpcDcEcFbpakcGcHcIcJakafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacecKcLcMcNcOcPcQcRcScTcUceaaaaaaaaaaaaaaclcmaWcVbhaabzbzaRaLcWaLbNbfcobfbNbNcXbhcYcZdadbdbdcdddebhcsaRdfdfdfdfaRbRbhdgdhafafafaaaaaaaaaaaaaaafaiandibUdjnrdlbUaiaiaiaVaVaVaVaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajajdmajbpbpbpbpdnajajajajajajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacecececedodpdqdrdsdtdudpdvdpdwcecececeaaaaaaaaclcmaWaWbAaLaRbNaLbNdxaLbNbfcocobNbNbNdydbdbdbdbdbdbdbdbdzbRdAdfdBdCaRaRbRbhdDahdhdhafaaaaaaaaaaafafafaiaTdEdFdkpnczdFalaidGaVaVdHaVaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafajdIajajdJbpdKdLajaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacedMdNdOdPdpdpdrdpdpdrdpdpdpdQdRdSdTcecedUbiclclcmaWaWbhaLbNdVaLdVdVaRbNbfdWbNbNbNqrbhdbdbdcdcdcdcdbdbdYdZdAdfeaebdfecbRbhedagahdhafafaaaaaaaaaaafagaiandibUdkeebVefanaiegaVaVdHdHaVaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaeafajeheiajejbpekbpajaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelelcedpemdpdpdpdpeneoeoepeqeqereqeqesdpceeteuevewewcmaVaWbAaRbNcnexeycnbNbNbfdWbNbNbNbNezdbdbdcdceAdcdbeBbheCdAaRdfdfdfeceDbheEeFeFeFagafafaaaaaaaaafagaiandEdFeeeGeHeIalaieJaVdHeKdHdHclaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaajajajajajajajeLajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeleleleMdpdpdpeNeOePeOeOeOeQeOeOeReSdpeTeqeUeVeWeXeYeZeZfaaWbhfbbNcWbNbNfcaRbNbfdWdWdWfddWbhdbdbdbdbdbaRdbfebhbSdAdfdfdfdfecbSbhffaWaWfgagafaaaaafaaagafagfhdkfidkdkdkdkdkdkfhdHdHdHeKeKfjfkafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaflaaaaaaaaaaaaaaajaoajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelcefmeOfnfocecececefpcefqcecefrfneOeOcefsftfufvfwbLfxaWbAbNbNbNbNbNbNbNaRbNbfbfbfbNbNfydbfzdbdbdbdbdbdbbhfAfBdffCfCfDfBfEbhfFfGfHfIbkbkafafafafbkbkfJfKfLfMeedkeedkeGdkfhfNeKeKaWaWfOclaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajeLajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelcedUfPdUcecefQfRfRfSfRfRfTcececefUcececececececebLfxaWbhfVfWbNbNbNbNbNfXbNfYbNbNbNbNbhbhbhdbezezezbhbhbhdfdfdffZfZgagbfZbhffaWaWeFaeagagagagagagaeaeaianalgcdkdkgdalanaigeeZgfaWaWfOclclclclaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaflaaaaaaaaaaaaaaajaoajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelcefmeOfnfocecececefpcefqcecefrfneOeOcefsftfufvfwbLfxaWbAbNbNbNbNbNbNbNaRbNbfbfbfbNbNfydbfzdbdbdbdbdbdbbhfAfBdffCfCfDfBfAbhfFfGfHfIbkbkafafafafbkbkfJfKfLqQdXfMeedkeGdkfhfNeKeKaWaWfOclaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajeLajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelcedUfPdUcecefQfRfRfSfRfRfTcececefUcececececececebLfxaWbhfVfWbNbNbNbNbNfXbNfYbNbNbNbNbhbhbhdbezezezbhbhbhdfdfdffZfZgagbfZbhffaWaWeFaeagagagagagagaeaeaifMfEulgcdkgdalanaigeeZgfaWaWfOclclclclaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelggghgicegjfRfRfSgkfSfRfRglcegmgmgmgngigogpgpcebLfxaWbhbhbhbhbhgqbAgqgrbhbhbhbhbhbhbhgsgsgsgsgsgsgsgsbhfZgtgtfZgugugugubhffaWaWeFbibigvbigvbigvbibiaiaigwgwgwgwgwgwaiaifNaWffaWaVaWgxaVaVgxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelgmgycegzfRaffSfSaffRfRgAcegBgmgmgigCgDgmghcebLgEgFgGgHeKdHdHdHeKgIeKeKgJaXaXaWaWaWaWaWaWaWaWaWaWaWgKaWaWaWaWaWaWaWaWgLffaWaVaWaWaWaWaWaWeKgMgNgNaWaWaWaWaWaWaWaWgKgOgPaWffaWaWgQclclclgRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelgpgScefQfSafelfRaffRfSfTceaaaagmgigigDgmgpcebLfxaVgGgHgMgIaVaVaVaVgIgMgTgJaXaWaWaWaVaWaWaWaWaWaWaWgKaWgUgVaVaVaVaVgWgWgXgWaWaWeKaWaWaWaXaXaXaWgYgZgYaWaWaWaVaWaWgKgKaWaWgXaVaXaWhaaVaVhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelgmgicehbhcafelelelelhchdceaaaaaaaagpgpgpgCcebLhehfgGgHgIaVaVaVhgaVeKgMeKfvfvfvhhaWaWaWaWaWaWhihjhkgKaWhlhmhnhmhohphqhrhsgWeKeKeKaWhtaWaWaWaWaWaWaWaWaXaWaWaWaWaWgKhuhvhvaVaWaWfOclaaclclaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelgmgicehbhcafelelelelhchdceaaaaaaaagpgpgpgCcebLhehfgGgHgIaVaVaVhgaVeKgMeKfvfvfvhhaWaWaWaWaWaWhihjhkgKaWhlhmhnhmhouRhqhrhsgWeKeKeKaWhtaWaWaWaWaWaWaWaWaXaWaWaWaWaWgKhuhvhvaVaWaWfOclaaclclaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelgigicececehwafelafhwcececeaaaaaaaagpgpgpgCcebLfxaVhxhxhxhxhxaahxhyhzhAhzhBhBhyhxhxhxhxhxhxhxhxhChxhxhxhxhDhmhEhFeFeEeFgWeKeKdHeKhGhGhGhGhGhHhIhIhIhIhIhJhKhIhIhLhGhGhGhGgXhMhNhOaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelgighelaaaaaaaaelelafafaaaaaaaaaaaaaaaaaagihPcebLfxaWhxhQhRhShShShxhThRhRhRhRhRhRhAhUhVhWhxhXhYhYhYhYhYhYhxeFhZeFeFeFiaeFeFibeFicichGidieifhGigihigiieFijeFiiikilikhGiminhGioipclclclafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelgpgielaaaaaaaaelelelaaaaaaaaaaaaaaaaaagmgmghcebLfxaWhxiqhRhShShSirhRhRhRhRhRhRhRhAisitiuhxivhYivhYivhYhYhxiwiwixiyipiaiziAiAiBiCiChGiDiEiFiGiHiIiJhGiKiFiLhGiMiMiMiNiFiFhGiOipaaafaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagighaaaaaaaaaaelelelaaaaaaaaceaaaagmgighgighcebLheaWhxiPhRhShRiQiRhRhRiSiTiTiTiTiUiVitiuhxivhYivhYivhYhYhxiWiXiYiZjaiajbjbjbjcjdjejfjgiNiFiFiFiFiFhGjhiFjihGiFiNiFiNiFiFhGiOipipipipipafafafafafafafafafafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagigpaaaaaaelafjjjkelafaaaaaacecejlcecececejmceaWheaWhxiPhRhRhRjnjohRhRjpjqjrjqjshxjtitiuhxivhYivhYivhYhYhxipipiwjujujvjwjwjwjxjyiBjzjAjBjCjCiNiFjDhGjEiFjFhGjBjBjBiNiFjGhGiOiwjHjIjJjIaaaaafaaafaaafaaafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelgpgielaaaaaaaaelelelaaaaaaaaaaaaaaaaaagmgmghcebLfxaWhxiqhRhShShSirhRhRhRhRhRhRhRhAisitiuhxivhYivhYivhYhYhxiwiwixiyipiaiziAiAiBiCiChGiDiEiFiGiHiIiJhGiKiFvEhGiMiMiMiNiFiFhGiOipaaafaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagighaaaaaaaaaaelelelaaaaaaaaceaaaagmgighgighcebLheaWhxiPhRhShRiQiRhRhRiSiTiTiTiTiUiVitiuhxivhYivhYivhYhYhxiWiXiYiZjaiajbjbjbjcjdjejfjgiNiFiFiFiFiFhGjhvHvKhGiFiNiFiNiFiFhGiOipipipipipafafafafafafafafafafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagigpaaaaaaelafjjjkelafaaaaaacecejlcecececejmceaWheaWhxiPhRhRhRjnjohRhRjpjqjrjqjqhxjtitiuhxivhYivhYivhYhYhxipipiwjujujvjwjwjwjxjyiBjzjAjBjCjCiNiFjDhGjEiFjFhGjBjBjBiNiFjGhGiOiwjHjIjJjIaaaaafaaafaaafaaafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadUjKaaaaaaelafeleljLaaaaaaaadUjMjNjOjPjQdUjRdUaWfxaWhxiPhRjSjTjUhxhRhRjphRhRhRjVhxjWjXjYhxjZhYhYhYhYhYhYkajaiwjujuafafafafjwiNiNiAjzkbkckdkdjhiFkehGhGkfhGhGkgkgkgiNiFkhhGiOiwiwipipipipipipipafaaafaaaaafaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakikjaaaaaaceelelelelaaaaaaaadUkkjNkldUkmdUjRdUaWfxaWhxknhRhRhRkohxhxkpkpiUhRhRhRhxiUkqiUhxhxkrhxhxhxksksksjajujuafaaaaafaaktktjbiBjzkgiNiNkgjhiNkuizkvkvkvizkwkwkxkyiFkzhGkAkBkBkBkBkBkBkBkCipipipipaaaaafaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacekDkEkFaaaaaaaaaadUkGkHkIdUkJdUjRdUaWfxaWhxkKhRhRhRhRhxaeaeaeiUkLkMhxhxkNkNkNkNkNkNkNkOhxjajajajakPafafaaaaaaaaafktjwjwhGkQkgkgkQjhiFkekRkSkTkUiziFkeiFiFiFkVhGkWhGhGhGhGhGhGhGiOipkXkYipipafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacekZelelafaaaaaaaalalalalalalalalblaaWfxaXhxhxlciUldhxhxaeaeaehxkOkNlekNkNkNkNkNkNkNkNkOhxjajajakPkPaaafaaaaaaaaafafafjwhGlfiFiFlgjhiFlhliljiFlkizizlllmlnllizhGhGhGlolplqlrlshGltlulvlwlxipaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacekZelelafaaaaaaaalalalalalalalalblaaWfxaXhxhxlciUldhxhxaeaeaehxkOkNlekNkNkNkNkNkNkNkNkOhxjajajakPkPaaafaaaaaaaaafafafjwhGlfiFiFlgjhiFlhliljiFlkizizlllmlnllizhGhGhGlovQlqlrlshGltlulvlwlxipaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacelyelelafaaaaaaaalzlAlAlAlAlAlAlAlalBheaWlCaeaeaeaeaeaeaeaelDhxkOlEkNkNkNkNkNkNkNkNkNkNhxiUiwjajuafaaaaaaaaaaaaaaaaafjwjwjblFidizlGiFiFizlHiFiNlIiFlJiFlKlLiFlMiFlNlOlPlQlQlRlSlTiplUlVlVipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaceceelelaaaaaaaaaalzlAlAlWlAlAlAlXlYlZmaaWlCafaeaeafafafafaelDhxkOkNkNkNkNkNkNkNkNhxhxmbiUiUiUjajuafafaaaaaaaaaaaaaaafaaktjbjbizizmcmdmcizljiFiNiNiFiFiFmemflQmglQmhjgjbiFiNiFhGiOiplUlVlVipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacecemiaaaaaaaaaalzmjmkmkmlmmmmmnlalBfxaWbiafafafafaaaaafaeaehxhxhzhxhzhxhzhxkNkNhxhRhRmompiUjukPafaaaaaaaaaaaaaaaaaaafafjbjbmqmrlJiFlLiFljiFlkjzjzjzizizizizizmsiFjbjbjbiFiFhGiOipmtlwmuipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelelaaaaaaaalzmvmwmxmymmmmmzlaaVheaVaeafaaaaaaaaaaaaaeaeaemAmBmCmDmCmBhxkNkNhxhRhRmEhRiUjaaaaaaaaaaaaaaaaaaaaaaaaaafmFmGmHmHmImHmHmHmJmKlkjzmLmMmNmOmPiLizjBjbjbafafjbmQhGiOipmRlVlVipaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaelelelafaaaaaalalalalalalalalalaaVfxaWaeaaaaaaaaaaaaaaafafaeaeitmSmTmUmVhxkNkNhxmWhRmXhRmYjajujuafafafaaaaaaaaaaaaafafjbjbizizmZjzjzjzljnalkjzmLnbmNnciFndhGjbjbaaaaaaafjbneiOipmtlwnfipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafafaaafafafafafaaaVaVaVaVaVgJngaWaWfxaWaeaaaaaaaaaaaaafafafaeaeaeitnhninjhxkNnkhxhRnlnmnnnojajujuafaaaaaaaaaaaaaaaaafjbjbhGnpnqnrnsntjzljlKlkjznumMmNnviNiNjbafaaaaaaaaafjbjajviplUlVlVipafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafafaaafafafafafaaaVaVaVaVaVgJngaWaWfxaWaeaaaaaaaaaaaaafafafaeaeaeitnhninjhxkNnkhxhRnlnmnnnojajujuafaaaaaaaaaaaaaaaaafjbjbhGnpnqwUnsntjzljlKlkjznumMmNnviNiNjbafaaaaaaaaafjbjajviplUlVlVipafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafaanwnxnxnxnynyeYeYeYeYeYeYeYeYeYeZnzaWaeaaaaaaaaaaaaaaafaeaehxnAitnBnCnDhxkNkNhxhxhxhxhxksjajuaaaaaaaaafaaafaaafafafjbjbhGnEnFnGkgnHjzljnInJnKmMmMiNiNiNjbafafaaaaaaaaafafiwiwiplUlVlVipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVaVaVnLnMnNnNnNnNaVaVaVaVgKaWaWhtaWaWaWaWaWbiaaaaaaaaaaaaafafaeaehxhxhxhxhxhxhxkNkNkNkNnOnPkNhxiwjujukPaaaaafafafafafjbjbjbjbhGnQnRnSnRnTjzljlKnUizmMmMmLmMmMiNjbafafaaaaafafafiwiOlunVlwlxipaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanWnWnWnXnYnZnWnWnWnWnWoanWnWnWnWnWobnWocodoenWaaaaaaaaaaaaaaafaeaeaeaeaeaeaeaeiUkOkNlEkNkNkNkNiUjujujuofafafafjbafjbjbjbjbjbjbhGizizizizizizogohoiizizizizizizizhGjbafafaaafjbjbneiOipojokipipafafafololololololololaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaomonoonWopoqopnWorosopotopopopopopoooonWnWnWnWnWaaaaaaaaaaaaaaaaafaeaeaeaeaeaeaeoukNkNkNkNkNkNkNiUjukPkPkPafkPafjbjbjbjbjbjbovovhGowowoxoxoxizoyozlkoAizoBoCoDoEiNiNjbjbjbafjbjbmhkBoFipipipipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaomoooooooooonWopoGoonWopoHopopopopoInWnWoooooJoKoooooLaaaaaaaaaaaaaaaaaaaaafafafafafaehxhxhxhxhxkNkNkNiUiwkPofjujukPjajbjbjbovoMovovovhGoNoNoOoPoQiziNoRlkoSjziFiFiFiFiFiFiFiFjbizizoTizizizizoUjzafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaomoooVoWoXoonWopoGoonWoYoZoppapboppcnWoooooooooooooonWaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaehxpdpepfpgkNkNkNphjuofkPjujujujajbovovovovovovovhGoNoNoNpipipjpkpllkjhpmiFpniFiFiFiFiFiFiFizpopppqizprpsptjzafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaomoooVoWoXoonWopoGoonWoYoZoppapboppcnWoooooooooooooonWaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaehxpdpepfpgkNkNkNphjuofkPjujujujajbovovovovovovovhGoNoNoNpipipjpkpllkjhpmiFiFiFiFiFiFiFiFiFizpopppqizprpsptjzafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoooooooooooopuopoGoonWnWnWnWnWnWpvnWnWoooooJpwoKoKoKnWaaaaaaaaaaaaaaaaaaaaaaaaaaaeaeaehxpxkNkNpykNkNkNiUjukPkPjujajajahGhGpzovovoMpzhGhGkdkdkdpApBizpCpDlkpEjziFiFpFiFiFiFiFiFlOpGpHpIprpJprprpKjzafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaomoopLpMpNpOnWopoqoppPoooooooooooooooooooooooooooooonWaaaaaaaaaaaaaaaaaaaaaaaaaaaenekskshxhxhxhxkNkNkNhxjukPkPjujajajahGiNovpQovovoviNizpRkdpApApSizpTpDlkpUiziFiFpVpWpXpYiFiFpZhGprppprizqalMlMizafafafafafafafafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeoooooonWopoqopnWqbqbqbqbqbqbqcqdqeqfooooooooooooaaaaaaaaaaaaaaaaaaaaaaaaaaaeqgqhhxpxqikNqjkNkNkNhxjujujujujajajahGqkqkqlqkqmqnqkizizizizizizqoqpqqqrqsizhGhGhGhGhGhGqtiFiFhGizoTizizquqvqwqxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqyqzooqAnWopoqopqBqbqCqDqEqFqbqbqbqbqbqbqGqbqbqbqbaaaaaaaaaaaaaaaaaaaaaaaaabaeqHhShxpdkNqIqJkNkNkNqJjujujujujajajahGiFiFiFiFiFiFiFqKqLqMkeqNqNlMljpDiNjzafqOqPqQqRqSqRqTqUqVhGqWqXqYizizizizizafafafafafafafafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeoooooonWopoqopnWqbqbqbqbqbqbqcqdqeqfooooooooooooaaaaaaaaaaaaaaaaaaaaaaaaaaaeqgqhhxpxqikNqjkNkNkNhxjujujujujajajahGqkqkqlqkqmqnqkizizizizizizqoqpqqoiqsizhGhGhGhGhGhGqtiFiFhGizoTizizquqvqwqxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqyqzooqAnWopoqopqBqbqCqDqEqFqbqbqbqbqbqbqGqbqbqbqbaaaaaaaaaaaaaaaaaaaaaaaaabaeqHhShxpdkNqIqJkNkNkNqJjujujujujajajahGiFiFiFiFiFiFiFqKqLqMkeqNqNlMljpDiNjzafqOqPzHqRqSqRqTqUqVhGqWqXqYizizizizizafafafafafafafafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabibibibibiopoqopopqbqCqDqEqFnWnWopopopopopqZraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqHkskskskskskshxrbrcksksksksksksksiwrdiFiFreiFiNiNiNiFreiFiFiFiFrfljpDiNjzafqOrgrgrhrirjjhndrkhGrlqXlViprmrnipafafaaaaaaaaaaaaaaaaaaaaaaroaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoooGooooqbopopopopopnWopopooopoprpafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqHksrqrrrsrtksrukNrvkskNkNrwkNkNksiwhGiFiFiFiFiFiNiNiFiFiFrxiFiFlMryrzryjzafqOrgrAqRrBqRrCrDrEhGlVqXlViplVlVipaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoooGooooooooooopoprFnWrGooopopoprHafaaaaaaaaaaaaaaaaaaaaaaaaaaaarIrJqHksrKkNkNrLksrMkNkNkskNkNkNkNkNksiwhGiFiFiFiFiFiFiFiFrNrOkerPiFizlMrQlMizizhGhGhGhGhGhGizizizhGlVqXrRlVlVrSipafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -1473,15 +1479,15 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatititiaatptptpaaaaaaaaaaaatpaatpaaaaaaaaaaaaaarIipsYtstttutviwipaaaaaaiwaaaaaaiwiwtjaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaiwiwiwiwafafiwiwiwiwiwiwiwtfipqXlVlVlVtwjItxjIololafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatytytytytztztAtytBtCtDtytptptpaaaaaaaaaaaatptititiafafafafafafrItEtEtEtEtFtEtEtEaaaaaaaaaaaaaaaaiwtjaaaaaaaarJiprJaaaaaaaaaaaaaaaaaaaatjiwiwiwiwiwiwiwiwnetfipjuiwtGipqXipiptHipipipipolaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatytItItJtItItItytKtLtKtytititititititititititititiaaaaaaaaafaatMtNtOtPtQtRtStTtEaaaaaaaaaaaaaaaaiwkAsZsZsZsZtUtUtUsZsZsZsZsZsZsZsZtVtUtWtUtUkCiwiwiwiwiwipipipiptXipipqXiptYlVlVipaaafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaooooooqbqbqbqbqbqbqbtItItZtIuauaubububtyubucudueufuguhuiubujukuluaaaaaaaaaafaatEumunuoupuqurustEaaaaaaaaaaaaaaaaaaaaiwiwiwiwiwiwiwaaaaaaiwaaaaiwaaipiwjuipiwutkBkBkBkBuurJuvuwuwuwuwuxuyiptolVuzipaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaooooooopoYopopnWopopqbtIuAuBtIuauaubububtytyuCuDuEuDuFuDuEuDuGuDuHaaaaaaaaafafaatEuIuJuKuLuMuNuOtEaaaaaaaaaaaaaaaaaaaaaaaaaaaarJiprJaaaaaaaaaaaaaaaaipiwiwipuPjuipiprJrJipipuQlVuQipuRuSuTipipipipipaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaooopopopopopopopopqbtItIuBtItItytAtAtAtyafuUafrIafuUafrIafuVafuVafafaaaaaaafaftEuWuLuXuLuYuNuZtEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaiptGsIipvaiwipaaaaaaaaiplVlVvbvcvcvdvevcaaafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaooooooqbqbqbqbqbqbqbtItItZtIuauaubububtyubucudueufuguhuiubujukADuaaaaaaaaaafaatEumunuoupuqurustEaaaaaaaaaaaaaaaaaaaaiwiwiwiwiwiwiwaaaaaaiwaaaaiwaaipiwjuipiwutkBkBkBkBuurJuvuwuwuwuwuxuyiptolVuzipaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaooooooopoYopopnWopAEqbtIuAuBtIuauaubububtytyuCuDuEuDuFuDuEuDuGuDuHaaaaaaaaafafaatEuIuJuKuLuMuNuOtEaaaaaaaaaaaaaaaaaaaaaaaaaaaarJiprJaaaaaaaaaaaaaaaaipiwiwipuPjuipiprJrJipipuQlVuQipAFuSuTipipipipipaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaooopopopopopopopAGqbtItIuBtItItytAtAtAtyafuUafrIafuUafrIafuVafuVafafaaaaaaafaftEuWuLuXuLuYuNuZtEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaiptGsIipvaiwipaaaaaaaaiplVlVvbvcvcvdvevcaaafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaopopopopopopopopopqbtItItItItItyvftLvgtyvhviuDvivhviuDvivhvjuDvkvhaaaaaaaaaaafvlvmuLvnvovpvqvrtEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaipipipipvsiwipiprJrJipiplVlVqWvcvtvuvvvcaaaaafafaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoYvwopopopvxopopopqbuatztztIuavyvzvAvBtyvhvCvDvEvhvFvGvHvhvIvJvKvhaaaaaaaaaaaatEvLvMuYuLuYuNvNtEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaarJrJrJipipipipipiprnojipvOiwiwiplVlVlVlVlVlVvPvcvQvRvSvcafaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoYvwopopopvxopopopqbuatztztIuavyvzvAvBtyvhvCvDwbvhvFvGwdvhvIvJwfvhaaaaaaaaaaaatEvLvMuYuLuYuNvNtEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaarJrJrJipipipipipiprnojipvOiwiwiplVlVlVlVlVlVvPvcAHvRvSvcafaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanWoKoKvTvUoKnWoKoKnWvVvWvXubvYvZvXubwatyvhwbwcwbvhwdwewdvhwfwgwfvhafafafafwhaftEtEtEvlwiwjwkwlwiaaaaaaaaaaaaaaaaaaaaaaaaaaafafafaarJwmwniplVwowpwqiplVlVipwriwiwlulVipipiprJrJipvcwswtwuvcafaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawvwvwwubwxwvwvwvwvwvwwububuaububububwatyvhwbwywbvhwdwzwdvhwfwAwfvhaaaaafafaaaaaaaaaawBwiwCwDwEwiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaarJwFlVwGlVlVlVlVlulVlVipipipipiplVipafaaaaaaafwHwHwIwHwHafafafafafafafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaububububububububububububububububububwatyvhvhvhvhvhvhvhvhvhvhvhvhvhaaafafaaaaaaaaaaaawJwiwjwKwlwiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaarJwmwLipwqlVlVwMiprRlVlVlVlVlVlVlVipafaaaaaaafaawHwNwHaaafaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauawOubububvgtywPtywPtyvgwQububwRuaubububububtytytKtKtKtKtyafafafafafafaaaaaaaaaaaaaawJwiwSwTwUwVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafrJrJrJipipiplVipipipipipwqwWqWrlipipafaaaaaaafaawHwIwHaaafaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauawOubububvgtywPtywPtyvgwQububwRuaubububububtytytKtKtKtKtyafafafafafafaaaaaaaaaaaaaawJwiwSwTAIwVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafrJrJrJipipiplVipipipipipwqwWqWrlipipafaaaaaaafaawHwIwHaaafaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawXwYububwZtyuauauauauauaxaububxbububuauaububxctyxdtKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawJwiwixewiwiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafaaaaaaaaipxfxgipiwafipiprJrJipipaaafaaaaaaafaaaaxhaaaaafaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauauawXwXubwPuauauauauauaububububububububububxixjuaxjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawJolwixkwiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafaaaaaaipxfwoipiwafaaafaaaaafaaaaafaaaaaaafaaaaxhaaaaafaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauauauauawXtyuauauauauauaububububububxlxmububxntyuatKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxoolxpxqxpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafaaaarJxrrJrJwhafaaafaaaaafaaxsxsxsxtafafafafxhafafafafafxtxsxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -1519,7 +1525,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxsyKzfyRaayyyyyVzxyVyVzCzwyVyyyyaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxsyKzfyRaayyyyzyzxzxzxzxzwzAyyyyaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxsyKzfyRaayyyyzDzxzEzFzGzxzDyyyyaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxszjzHyzyzyzyyyyzszIzJzKzpyyyyyzyzyzznzoxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxszjzkyzyzyzyyyyzszIzJzKzpyyyyyzyzyzznzoxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxsyKzfyRaaafaayyyyyyzLzMyyyyaaafaayKzfyRxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaayzzNzOzKzPzQyzaaafaayKzfyRxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaazRzSzSyzzTzUzVzWzXyzzRzSzRaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -1637,3 +1643,4 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} + From 7e12a51ebf56187e0f5786228cdca14bb0bc23aa Mon Sep 17 00:00:00 2001 From: oranges Date: Wed, 21 Oct 2015 13:13:12 +1300 Subject: [PATCH 22/25] YEAH THIS HAPPENING GET OUT --- code/modules/mob/inventory.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index 36482b3c31d..fa00df2f7db 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -45,7 +45,6 @@ W.loc = src r_hand = W W.layer = 20 -// r_hand.screen_loc = ui_rhand W.equipped(src,slot_r_hand) if(client) client.screen |= W if(pulling == W) stop_pulling() @@ -93,7 +92,7 @@ //Drops the item in our left hand -/mob/proc/drop_l_hand() //I really fucking wonder why this proc had an argument holy shit. +/mob/proc/drop_l_hand() if(!loc.allow_drop()) return return unEquip(l_hand) //All needed checks are in unEquip @@ -103,11 +102,11 @@ /mob/proc/drop_r_hand() if(!loc.allow_drop()) return - return unEquip(r_hand) //Why was this not calling unEquip in the first place jesus fuck. + return unEquip(r_hand) //Drops the item in our active hand. -/mob/proc/drop_item() //THIS. DOES. NOT. NEED. AN. ARGUMENT. +/mob/proc/drop_item() if(hand) return drop_l_hand() else return drop_r_hand() From bb8c9899d1b9729c04a46f1528bb65d2c22d1602 Mon Sep 17 00:00:00 2001 From: Strathcona Date: Tue, 20 Oct 2015 21:42:56 -0400 Subject: [PATCH 23/25] More changes --- _maps/map_files/DiscStation/DiscStation.dmm | 367 ++++++++++---------- 1 file changed, 177 insertions(+), 190 deletions(-) diff --git a/_maps/map_files/DiscStation/DiscStation.dmm b/_maps/map_files/DiscStation/DiscStation.dmm index 5e714af43b8..644623564e0 100644 --- a/_maps/map_files/DiscStation/DiscStation.dmm +++ b/_maps/map_files/DiscStation/DiscStation.dmm @@ -287,9 +287,9 @@ "afA" = (/obj/structure/closet,/obj/item/device/assembly/prox_sensor{pixel_x = 2; pixel_y = -2},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "afB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) "afC" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"afD" = (/obj/structure/window,/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/space) -"afE" = (/obj/structure/window,/obj/item/target,/turf/simulated/floor/plating/airless,/area/toxins/lab) -"afF" = (/obj/structure/window,/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/toxins/lab) +"afD" = (/obj/structure/window,/obj/item/target,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"afE" = (/obj/structure/window,/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/toxins/test_area) +"afF" = (/obj/structure/window,/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/toxins/test_area) "afG" = (/obj/item/stack/rods,/turf/space,/area/space) "afH" = (/turf/simulated/wall,/area/maintenance/fpmaint) "afI" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) @@ -328,8 +328,8 @@ "agp" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint) "agq" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/device/radio,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) "agr" = (/obj/structure/bed/stool,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"ags" = (/turf/simulated/floor/plating/airless,/area/toxins/lab) -"agt" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 5},/area/toxins/lab) +"ags" = (/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"agt" = (/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/test_area) "agu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "agv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "agw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) @@ -475,9 +475,9 @@ "ajg" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plasteel,/area/toxins/mixing) "ajh" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel,/area/toxins/mixing) "aji" = (/turf/simulated/wall/r_wall,/area/toxins/lab) -"ajj" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ajk" = (/obj/machinery/light{dir = 1},/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ajl" = (/obj/machinery/camera{c_tag = "Toxins North"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"ajj" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 5},/area/toxins/test_area) +"ajk" = (/obj/machinery/light{dir = 1},/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ajl" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "ajm" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "ajn" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "ajo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkpurple/side,/area/hallway/primary/starboard) @@ -519,13 +519,13 @@ "ajY" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel,/area/toxins/mixing) "ajZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/mixing) "aka" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/lab) -"akc" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "mix to port"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) -"akd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = 24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/lab) -"ake" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/lab) -"akf" = (/obj/structure/sign/fire{pixel_y = 32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/engine,/area/toxins/lab) -"akg" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "mixing vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/toxins/lab) -"akh" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/toxins/lab) +"akb" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"akc" = (/obj/machinery/camera{c_tag = "Toxins North"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"akd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/mixing) +"ake" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = 24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/mixing) +"akf" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "mix to port"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing) +"akg" = (/obj/structure/sign/fire{pixel_y = 32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing) +"akh" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "mixing vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) "aki" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine,/area/toxins/lab) "akj" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "akk" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) @@ -558,13 +558,13 @@ "akL" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) "akM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/mixing) "akN" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akO" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/turf/simulated/floor/plasteel,/area/toxins/lab) -"akP" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/lab) +"akO" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) +"akP" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/turf/simulated/floor/plasteel,/area/toxins/mixing) "akQ" = (/turf/simulated/floor/plasteel,/area/toxins/lab) -"akR" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/lab) -"akS" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/turf/simulated/floor/engine,/area/toxins/lab) -"akT" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2; frequency = 1449; id = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/toxins/lab) -"akU" = (/turf/simulated/floor/engine/vacuum,/area/toxins/lab) +"akR" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/mixing) +"akS" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/mixing) +"akT" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2; frequency = 1449; id = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/toxins/mixing) +"akU" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/turf/simulated/floor/engine,/area/toxins/mixing) "akV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "akW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint) "akX" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) @@ -595,12 +595,12 @@ "alw" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/toxins/mixing) "alx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/toxins/mixing) "aly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/toxins/mixing) -"alz" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"alA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/lab) -"alB" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "port to mix"},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/lab) -"alC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/lab) -"alD" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = -24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/toxins/lab) -"alE" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/toxins/lab) +"alz" = (/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) +"alA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/mixing) +"alB" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"alC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/mixing) +"alD" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "port to mix"},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/mixing) +"alE" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = -24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing) "alF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/fsmaint) "alG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "alH" = (/obj/effect/decal/cleanable/oil/streak,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) @@ -635,10 +635,10 @@ "amk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) "aml" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) "amm" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) -"amn" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"amn" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) "amo" = (/turf/simulated/wall,/area/toxins/lab) -"amp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/toxins/lab) -"amq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/toxins/lab) +"amp" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"amq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/toxins/mixing) "amr" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "ams" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) "amt" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) @@ -676,15 +676,15 @@ "amZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "ana" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) "anb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/lab) -"anc" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"and" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ane" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anf" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ang" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anh" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/toxins/lab) -"ani" = (/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_y = 24},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/lab) -"anj" = (/obj/machinery/doppler_array{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/lab) -"ank" = (/obj/structure/window,/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/toxins/lab) +"anc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/mixing) +"and" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ane" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ang" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anh" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ani" = (/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_y = 24},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) +"anj" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/toxins/test_area) +"ank" = (/obj/machinery/doppler_array{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) "anl" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) "anm" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/hallway/primary/port) "ann" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) @@ -711,18 +711,18 @@ "anI" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) "anJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/toxins/lab) "anK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"anM" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anQ" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anT" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/toxins/lab) -"anU" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/toxins/lab) -"anV" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 8; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/lab) -"anW" = (/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/lab) +"anL" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anM" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anO" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"anP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anQ" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/toxins/test_area) +"anR" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 8; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/test_area) +"anS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/mixing) +"anT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anV" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_x = 30; pixel_y = 0},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anW" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning,/area/toxins/test_area) "anX" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "anY" = (/turf/simulated/wall,/area/maintenance/electrical) "anZ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) @@ -747,15 +747,15 @@ "aos" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) "aot" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "aou" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"aov" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/lab) -"aow" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aox" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aoy" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_x = 30; pixel_y = 0},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aoz" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/toxins/lab) -"aoA" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning,/area/toxins/lab) -"aoB" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/toxins/lab) -"aoC" = (/obj/item/device/flashlight/lamp,/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/lab) -"aoD" = (/obj/structure/bed/chair,/obj/item/target/syndicate,/turf/simulated/floor/plating/airless,/area/toxins/lab) +"aov" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/toxins/test_area) +"aow" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/toxins/test_area) +"aox" = (/obj/item/device/flashlight/lamp,/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"aoy" = (/obj/structure/bed/chair,/obj/item/target/syndicate,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"aoz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) +"aoA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoB" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoC" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/camera{c_tag = "Toxins Lab West"; dir = 8; network = list("SS13","RD"); pixel_y = 0},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "aoE" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/electrical) "aoF" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/maintenance/electrical) "aoG" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/bluegrid,/area/maintenance/electrical) @@ -785,21 +785,21 @@ "ape" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "apf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) "apg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/lab) -"aph" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aph" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) "api" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apk" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/camera{c_tag = "Toxins Lab West"; dir = 8; network = list("SS13","RD"); pixel_y = 0},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"apj" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) +"apk" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/turf/simulated/floor/plating,/area/toxins/test_area) "apl" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "apm" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "apn" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 0; pixel_y = 3},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "apo" = (/obj/structure/closet,/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"app" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/lab) -"apq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/lab) -"apr" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/toxins/lab) -"aps" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/turf/simulated/floor/plating,/area/toxins/lab) -"apt" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating/airless,/area/toxins/lab) -"apu" = (/obj/item/weapon/reagent_containers/food/snacks/sugarcookie{pixel_x = 8},/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/lab) -"apv" = (/turf/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/toxins/lab) +"app" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/toxins/test_area) +"apq" = (/obj/item/weapon/reagent_containers/food/snacks/sugarcookie{pixel_x = 8},/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"apr" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"aps" = (/turf/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/toxins/test_area) +"apt" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"apu" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"apv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "apw" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "apx" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) "apy" = (/turf/simulated/floor/plating,/area/maintenance/electrical) @@ -830,16 +830,16 @@ "apX" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "apY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) "apZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqa" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqa" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "aqb" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqc" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqf" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqd" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqe" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"aqf" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Bomb Test Site"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/turf/simulated/floor/plating/airless,/area/toxins/test_area) "aqg" = (/obj/item/weapon/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqh" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqi" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating/airless,/area/toxins/lab) -"aqj" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Bomb Test Site"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/turf/simulated/floor/plating/airless,/area/toxins/lab) +"aqi" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqj" = (/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "aqk" = (/obj/machinery/recharge_station,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) "aql" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) "aqm" = (/obj/machinery/power/port_gen/pacman,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) @@ -869,12 +869,12 @@ "aqK" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) "aqL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "aqM" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqN" = (/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqO" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqP" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqQ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqS" = (/obj/machinery/power/apc{dir = 4; name = "Toxins Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqO" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqQ" = (/turf/simulated/wall/r_wall,/area/toxins/misc_lab) +"aqR" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"aqS" = (/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aqT" = (/obj/machinery/power/apc{dir = 2; name = "Testing Lab APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) @@ -916,8 +916,8 @@ "arF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "arG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) "arH" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/science) -"arI" = (/turf/simulated/wall/r_wall,/area/toxins/test_area) -"arJ" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/toxins/test_area) +"arI" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"arJ" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/alien,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "arK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) "arL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "arM" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/electrical) @@ -955,9 +955,9 @@ "ass" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/machinery/camera{c_tag = "Research Security Post"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/science) "ast" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light_switch{pixel_y = 23},/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/science) "asu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/science) -"asv" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/plasteel,/area/toxins/test_area) +"asv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "asw" = (/turf/simulated/floor/plasteel,/area/toxins/test_area) -"asx" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/alien,/turf/simulated/floor/plasteel,/area/toxins/test_area) +"asx" = (/obj/machinery/camera{c_tag = "Firing Range"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "asy" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "asz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fpmaint) "asA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint) @@ -990,10 +990,10 @@ "atb" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/science) "atc" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/turf/simulated/floor/plasteel,/area/security/checkpoint/science) "atd" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 30; pixel_y = 0},/obj/item/device/radio/off,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/science) -"ate" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"atf" = (/obj/machinery/camera{c_tag = "Firing Range"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"atg" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/toxins/test_area) -"ath" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/target/syndicate,/turf/simulated/floor/plasteel,/area/toxins/test_area) +"ate" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"atf" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/target/syndicate,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"atg" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"ath" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "ati" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/robotics_cyborgs,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "atj" = (/obj/structure/bed/stool,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "atk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) @@ -1037,8 +1037,8 @@ "atW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/science) "atX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint/science) "atY" = (/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/science) -"atZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"aua" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/test_area) +"atZ" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"aua" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aub" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "auc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "aud" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) @@ -1065,12 +1065,12 @@ "auy" = (/obj/machinery/computer/secure_data,/obj/machinery/power/apc{dir = 2; name = "Science Security APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) "auz" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/science) "auA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/security/checkpoint/science) -"auB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"auC" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/test_area) +"auB" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/misc_lab) +"auC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/misc_lab) "auD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/test_area) -"auE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/test_area) -"auF" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/test_area) -"auG" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/test_area) +"auE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/misc_lab) +"auF" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"auG" = (/obj/machinery/camera{c_tag = "Test Area"; dir = 4; network = list("SS13")},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "auH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/hallway/primary/starboard) "auI" = (/turf/simulated/floor/engine,/area/medical/chemistry) "auJ" = (/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/hallway/primary/starboard) @@ -1094,8 +1094,8 @@ "avb" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "purple"},/area/hallway/primary/starboard) "avc" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) "avd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitepurple"},/area/toxins/lab) -"ave" = (/obj/machinery/camera{c_tag = "Test Area"; dir = 4; network = list("SS13")},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"avf" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/test_area) +"ave" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) +"avf" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "avg" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "avh" = (/obj/structure/table,/obj/machinery/button/door{id = "mixvent2"; name = "Gas Mixing Vent Control"; pixel_x = 0; pixel_y = 0; req_access_txt = "55"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/mixing) "avi" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"},/area/shuttle/pod_2) @@ -1118,12 +1118,12 @@ "avz" = (/turf/simulated/wall/r_wall,/area/crew_quarters/hor) "avA" = (/turf/simulated/wall,/area/crew_quarters/hor) "avB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"avC" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"avD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/test_area) -"avE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"avF" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/toxins/test_area) -"avG" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/test_area) -"avH" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/test_area) +"avC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"avD" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"avE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"avF" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/misc_lab) +"avG" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/misc_lab) +"avH" = (/turf/simulated/wall,/area/toxins/misc_lab) "avI" = (/obj/item/stack/sheet/cardboard,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "avJ" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "avK" = (/obj/machinery/power/apc{dir = 8; name = "Fore Port APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) @@ -1806,7 +1806,7 @@ "aIL" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aIM" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aIN" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aIO" = (/turf/simulated/wall,/area/engine/gravity_generator) +"aIO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "aIP" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "aIQ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "aIR" = (/obj/structure/table,/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/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) @@ -1934,7 +1934,7 @@ "aLj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Telecoms Computers"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/computer) "aLk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/computer) "aLl" = (/turf/simulated/wall/r_wall,/area/maintenance/fpmaint2) -"aLm" = (/obj/structure/lattice,/turf/space,/area/engine/gravity_generator) +"aLm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) "aLn" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) "aLo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) "aLp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) @@ -1962,7 +1962,7 @@ "aLL" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) "aLM" = (/obj/structure/table/glass,/obj/item/weapon/storage/secure/briefcase,/obj/machinery/camera{c_tag = "CMO's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "aLN" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aLO" = (/turf/space,/area/engine/gravity_generator) +"aLO" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/gravity_generator) "aLP" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) "aLQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "aLR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -1986,8 +1986,8 @@ "aMj" = (/obj/structure/closet/crate/medical,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "aMk" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "aMl" = (/turf/simulated/wall/r_wall,/area/tcommsat/server) -"aMm" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/space) -"aMn" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/space) +"aMm" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/gravity_generator) +"aMn" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) "aMo" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "aMp" = (/obj/structure/table,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) "aMq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -2051,7 +2051,7 @@ "aNw" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/tcommsat/lounge) "aNx" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow"; icon_state = "darkyellow"},/area/tcommsat/server) "aNy" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/tcommsat/server) -"aNz" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/space) +"aNz" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/research) "aNA" = (/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) "aNB" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) "aNC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) @@ -2086,7 +2086,7 @@ "aOf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "aOg" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) "aOh" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (WEST)"; icon_state = "darkyellow"; dir = 8},/area/tcommsat/server) -"aOi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/space) +"aOi" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/research) "aOj" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) "aOk" = (/obj/structure/table,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "aOl" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -2138,7 +2138,7 @@ "aPf" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) "aPg" = (/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) "aPh" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aPi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/space) +"aPi" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research) "aPj" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/port) "aPk" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/port) "aPl" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) @@ -2193,7 +2193,7 @@ "aQi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) "aQj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) "aQk" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) -"aQl" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/space) +"aQl" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/research) "aQm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "aQn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) "aQo" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) @@ -2320,7 +2320,7 @@ "aSF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Telcom Storage"; req_access_txt = "23"},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) "aSG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/lounge) "aSH" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) -"aSI" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/space) +"aSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) "aSJ" = (/obj/machinery/power/terminal,/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) "aSK" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) "aSL" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) @@ -2426,7 +2426,7 @@ "aUH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners"; icon_state = "darkyellowcorners"},/area/tcommsat/server) "aUI" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/server) "aUJ" = (/obj/machinery/telecomms/receiver/preset_left,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) -"aUK" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/space) +"aUK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) "aUL" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/engine/gravity_generator) "aUM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aUN" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Telecoms Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/storage/secure) @@ -2443,8 +2443,8 @@ "aUY" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/engine/gravity_generator) "aUZ" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/research) "aVa" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/research) -"aVb" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/space) -"aVc" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/space) +"aVb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"aVc" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_3) "aVd" = (/turf/simulated/wall/r_wall,/area/maintenance/maintcentral) "aVe" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) "aVf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) @@ -2506,8 +2506,8 @@ "aWj" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) "aWk" = (/obj/structure/table,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/research) "aWl" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aWm" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/space) -"aWn" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/space) +"aWm" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_3) +"aWn" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_3) "aWo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) "aWp" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) "aWq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) @@ -2557,8 +2557,8 @@ "aXi" = (/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/robot_parts/chest,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) "aXj" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/research) "aXk" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research) -"aXl" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/space) -"aXm" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/space) +"aXl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/lawoffice) +"aXm" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) "aXn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) "aXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) "aXp" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) @@ -2652,7 +2652,7 @@ "aYZ" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = -30; pixel_y = 0},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "AI Upload Exterior"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) "aZa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) "aZb" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating/airless,/area/space) -"aZc" = (/obj/structure/lattice,/turf/space,/area/ai_monitored/nuke_storage) +"aZc" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) "aZd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) "aZe" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) "aZf" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) @@ -2757,7 +2757,7 @@ "bba" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) "bbb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) "bbc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) -"bbd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/space) +"bbd" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) "bbe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral) "bbf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral) "bbg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) @@ -2810,7 +2810,7 @@ "bcb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/nuke_storage) "bcc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/nuke_storage) "bcd" = (/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) -"bce" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/space) +"bce" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_3) "bcf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral) "bcg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral) "bch" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral) @@ -2871,8 +2871,8 @@ "bdk" = (/obj/structure/closet/secure_closet/freezer/money,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/clothing/head/bearpelt,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) "bdl" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1; pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1; pixel_y = -2},/obj/item/weapon/storage/belt/champion,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) "bdm" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) -"bdn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/space) -"bdo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/space) +"bdn" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_3) +"bdo" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_3) "bdp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral) "bdq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral) "bdr" = (/obj/machinery/door/window{dir = 1; name = "AI Core Door"; req_access_txt = "16"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) @@ -2921,7 +2921,6 @@ "bei" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) "bej" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) "bek" = (/obj/machinery/power/apc{cell_type = 10000; dir = 8; name = "Bridge APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/bridge) -"bel" = (/obj/structure/lattice,/turf/space,/area/maintenance/maintcentral) "bem" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) "ben" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) "beo" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) @@ -3371,7 +3370,6 @@ "bmQ" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "bmR" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "bmS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/courtroom) "bmU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "bmV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "bmW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/courtroom) @@ -3544,9 +3542,6 @@ "bqh" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/hallway/primary/port) "bqi" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) "bqj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bqk" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/arrival) -"bql" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/arrival) -"bqm" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/arrival) "bqn" = (/turf/simulated/floor/plasteel/grimy,/area/chapel/office) "bqo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) "bqp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) @@ -3579,7 +3574,6 @@ "bqQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/port) "bqR" = (/turf/simulated/wall/r_wall,/area/lawoffice) "bqS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/lawoffice) -"bqT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/lawoffice) "bqU" = (/obj/structure/bed/chair{dir = 4; name = "Prosecution"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/crew_quarters/courtroom) "bqV" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 10},/area/crew_quarters/courtroom) "bqW" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) @@ -3616,9 +3610,6 @@ "brB" = (/obj/machinery/chem_dispenser,/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) "brC" = (/obj/effect/landmark/start{name = "Chemist"},/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) "brD" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) -"brE" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"brF" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"brG" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "brH" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/arrival) "brI" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) "brJ" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) @@ -3700,7 +3691,6 @@ "bth" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) "bti" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSortEnd"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) "btj" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/port) -"btk" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "btl" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) "btm" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) "btn" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) @@ -3710,8 +3700,6 @@ "btr" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) "bts" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/pods,/turf/simulated/floor/plating,/area/hallway/secondary/entry) "btt" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"btu" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/arrival) -"btv" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/arrival) "btw" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "btx" = (/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) "bty" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) @@ -4871,7 +4859,6 @@ "bPI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) "bPJ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/storage/testroom) "bPK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/hallway/secondary/entry) -"bPL" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/space) "bPM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/hallway/secondary/entry) "bPN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/security/brig) "bPO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/wall,/area/security/brig) @@ -7061,30 +7048,30 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaabqabqabqabqabqabqabqaaaaaZaaaabqabqabqabqabqabqabqaaaaadaaaaagaaaaaaaaaaagaaaaaaaaaaadaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabrabradtaduacNadwaaxaaxadxadyadzadAadBacXadCaaxaaxadwadDadEadFabrabraagaagaagaagaagaagaagaagaagaagaagaagaagaagaaAaaAaaAacxadGaddaddadHacxadIadIadJabjadKadLadLadLadMadNadOaccabkadPabJaetabJabJacTabJabJadmadmadRabpadSadTadUadUadUadUadUadVadSabpbgKabJablablablabJadWabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaagaaaaaaaaaaaZaaaaaaaaaaagaaaaaaaaaaaaaaaaadaagaagaaaaaaaaaaagaaaaaaaaaaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrabradXadYabraaxaaxaaxadZaeaaebaecaedaaxaaxaaxabraeeadXabrabraaaaaaaefaegaehaehaeiaejaejaeiaejaejaeiaejaejaejaekaejaelaemadkaeoaddaepadIadIadIabjabjaeqabDabDabjaeraesabjabkaetabJaetaeuaevaewaevaevaexaeyaeyaezaeAaeBablablablablablaeCadSabpbgKabJablaeDablabJabJablaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaeaagaaaaaGaaGaaGaaGaaaaaZaaaaaGaaGaaGaaGaaaaagaaeaadaadaaaaagaaaaaaaaaaagaaaaaaaaaaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeFadvaeHadwaaxaaxaaxaeaaeIaecaaxaaxaaxadwaeJaeKaeFaaaaaaaaaaaaaeLaeMaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaeNaeOacxacxaePaeQaeRaeSaeTadIadIadQabjaeUaeUaeUabjaeVaeWadIaaAabJabJaetaeXaeYaeZafaaeZafbafcafdafcafcafeablaaaaaaaaaablaeCadSaetbgKabJablablablabJabJabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaWaaXaaXaaXaaYaaZabaabbabbabbabcaaaaaaaaeaagaagaaaaagaaaaaaaaaaagaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaffaeGaenafiafgafgafjaflafmafkafjafgafgafiafhafoafpaaaaaaaaaaaaafqaaaaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaagabWaaQafrafsaftafuafvafwadIadIadIafxabDabDabDabDaeVaeWafyaaAaetaetaetafzafAabkabkabkabkabkabkabkabkabkabkafnafnafnabkaeCadSafCacfafCabJabJabJabJabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafDafEafFaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafGaaaabqabqabqabqaaaaaZaaaabqabqabqabqaaaaagaaeaaaaagaagafHaaaaaaaaaafHaaaaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabradXafBabrafgafIafjafJafKafLafjafMafgafNafhadXabraaaaaaaaaaaaafqaefaegaehaeiaejaejaejaejaejaeiaejaejaeiaehafOafPafQafRaaQafSafTafUadIadIadIadIafVafWafXafXafYafZagaagbaevagcaevagdageabkagfagfagfaggaghagiagjagkagjaglagmagmabkagnagoagpafCagqagrabJabJabpabpaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaEagsagtaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaguaguaguaguaagaaaaagaaaaaaaaZaaaaaaaagaaaaagaaaaaaaaeafHagvagvafHaaFaaFaaFafHagvagvafHaaaaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabragKagHabrafgafgafjagxagyagzafjafgafgabrafhagwabraaaaaaaaaaaaafqaeLaeMaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaeNagAagBagCagDagEagFadIadIadIadIaeVagGahtajoainagJagIaklaeZaeZaeZaeZagLabkagMagNagOagPaghagiagQagkagRaglagmagSabkagTagUagVagWagWaetabpabpabpaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafDafEafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaguagXagYagZahaahbaaZaaZaaZaaZaaaaagaagaaaaaaaaaafHafHafHahcahcahdaaQaaQaaQahdahcaheafHagvafHaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsahfahgabrahhahhahhahiahhahjahhahhahhabrahgagwabsaaaaaaaaaaaaafqahkaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaeNahlahmahnbntbhKbnxbnuahradIaeVahsakZasmaoJahuahvahvahvahvahvahvahvahvagNagkahwahxaghahyahzahzahAahBagmagmabkahCahDahEahEahEahEahEahEadqaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaEagsagtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaagafHafHahFahGahHahFahFafHaaaaaaaaaaaaaaaaaaaaaaaaaaaafHafHahIahJahcahKafHahLahLahLafHahMaheahNahcafHafHaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrahOahPabrahQahRahSahTahUahVahWahRahXabrafhagwabraaaaaaaaaaaaafqahkaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaeNaeOafrafsaftbnyahYahZaeVagGauHauMauJaibahvaicaidaieaifaigaihaiiaijaikailahxaimaimavhaioaioaioaioaioabkaipaiqairaisadUadUadUaitaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaafDafEafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHaivahFaiwaixaiyahFafHafHaagaagaagaagaagaagaagafHafHaizaiAaiBaiCahcafHaviavmavlaiDafHafHafHaiEaiFafHafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabraiGaiHaiIaiJaiKaiLaiMaiNaiOaiPaiPaiQaiIaiRadXabraaaaaaaaaaaaafqahkaefaegaeiaejaejaeiaejaejaeiaejaejaeiaehaehaehaehaehaehafOaiSafRaaQbnzafTaiTaeVaiUaiVaiWaiWaiXahvaiYaiZajaajbajcajdaiiajeajfajgahxaimajhajhajiajjajkajlajmajiajiajiajiajiajiablablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaEagsagtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaaafHafHajnahcahFavKavoavLahFajpafHafHaaaaaaaaaaaaaaaaaaafHajqajrajsafHajtajuafHavNawjavNaagaagaagafHafHahcajvafHaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajwajxajyajzajAajBajCajDajEajFajGajHajIajJajKaaaaaaaaaaaaaaaafqahkaeLaeMaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaajLagBajMbhKagEajNaeVajOajPajQadIajRahvajSajTajUajVajWajXaiiajYaimajZahxaimakaakaajiajmakbakcakdakeakfakeakgakhakiaaaablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaafDafEafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagafHafHakjakjakkafHagvawkagvafHahcajpafHafHaaaaaaaaaaaaafHafHakmahMaknafHakmahcafHavNawsavNaagaaaaaaaaaafHafHakoafHafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhahhakpakqakraksaktakuakvakwakxakyakzahhahhaagaagaagaagakAakBakCahkaaaaagaagaagaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaeNagAakDbnMakEadIaeVajOakFboEakGakGahvahvahvahvakHaiiaiiaiiakIakJakKakLakMakNboFakOajmakPakQakRakSakTakSakUakUakiaaaablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaEagsagtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHafHaizaiAaiAaiAaiAaiAakVaiAakWaiAaiAakXafHafHagvagvafHafHaizakYafHafHafHakmahcafHawtawHawGaagaaaaaaaaaaagafHahcalaagvaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhahhalbalcalcaldalealfalcalgalhalialiaehaehaehaljaehalkaeMakCakCaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaallalmbnualnadIaeVajOaloakGalpalpalqalpalpalralsaltalualvalvalwalxalyalvalvalvajialzalAalBalCakealDakealEakUakiaaaablaeCalFaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaafDafEafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHaizakYafHafHafHafHagvagvagvagvafHafHalGaiBaiBaiAaiAaiAaiAalHafHafHaagafHakmalIalIalIalJalIboGbqhalMalNaaaafHafHahdafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalOahhalPalQalRalSalQalTalRalQahhahhalOaaaaaaaaaaagaaaaaaaaaakCakCaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaalUalVaftbnyalWalXaeVajOaloakGalYalZamaambbqiamdameamfamgamhamhamiamjamkamhamlammajiamnajmajmajiajiajiajiajiajiajiamoamoampamqamoamoamoamoaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagaaEagsagtaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHakmafHafHaagaagaagaagaagaagaagaagafHafHafHafHamragvafHafHafHafHaagaagafHakmalIamsamtamuamvamwbsCamyamzamAaagabWaaQamBaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagalOahhamCalRalQamDamEamFalQalRaagaagalOaaaaaaaaaaagaaaaaaaaaafqamGaaaaaaaaaaaaaaaaaaakAamIamJamJaljamJamJamJaljamJamJamJamKamLaaQbnzafTamMaeVajOamNakGamOamPamQamRamSamTamUamVamWamVamVamXamYamVamVamZanaanbajmajmajmancandajmajmajmaneajiajmanfangamqanhanianjanbaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagamoankafEafFamoaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvaizakYafHaagaagaagafHagvagvagvafHaagaagaagaagaagaagaagaagaagaagaagaagafHafHakmalIanlamuamuanmannbtjaaQanpanqaehaekaeianraehaehaehansaehaehaehaljaehaehaehansaehantanuaaaaaaaaaaagaaaalOahhakualQanvanwanxanyanzalQaagaagalOaaaaaaaaaaagaaaaaaaaaahkahkaaaaaaaaaaaaaaaaaaaeLaeMaaaaaaaaaaaaaaaaaaaagaaaaaaaaaanAanBajMbhKagEanCaeVajOaiaakGanDanEanFanFanGalranHanIanIanIanIanIanIanIanJanKanLanManNanNanNanOanPajmajmbtkajmanQajmanRanSanTanUakQanVanbaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaagamoamoanWagsagtamoamoaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvakmanXanYanYanYanYanYanZahcaoaafHafHafHafHafHafHamrafHafHagvagvagvagvafHakjaobaocaodamuamuaoeaofbtFafraohaoiaagabWaaQamBaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaanAaojanuaaaaaaaagaaaalOahhaokalQalQaolaomaonalQalQaagaagalOaaaaaaaaaaagaaaaaaaaaahkahkaaaaaaaaaaaaaaaaaaahkaaaaaaaaEaaFaaFaaFaaFaaFaaFaaFaaFaaFbvdakDbnMaooadIaopaoqaiaakGanDanEanFanFaoralramoamoamoamoamoamoamoamoaosaotaouaovamfamfamfaowaoxaoyajiajiajiajiamoampamqamoaozaoAaoBanbaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamoaoCagsaoDagsagsamoamoamoaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaagvakmanXanYaoEaoFaoGanYaoHahcahcafHahcahcaoIahcafHawIaoKafHahcahcaoLahcaizaiAakYalIaoMamuamuaoNaoObvsaoQaoRaaaaagafHahdafHaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaanAaojanuaaaaagaaaalOalOalOalOalQalQalQalQalQalOalOalOalOaaaaaaaaaaagaaaaaaaaaaoSaoSaaaaaaaaaaaaaaaaaaaoTaagaagaeNahLahLahLahLahLahLahLahLaaAaaAacyaaAaaAaaAaoUaoVaoWakGalralralralralralrajmaoXaoYaoZapaapbapcanbapdapeapfapgaphapiapiapiapjapkajiaplapmapnapoaeCadSamoappapqaprapsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagsagsaptapuagsagsaoCapvamoaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagagvakmaivanYbvtapxapyanYanYanYapzapAapAapBapCahcafHafHafHafHapDapEapEapEapFapEapEapEapGamuapHalIbvubvuahLapJaaaaagafHapKafHaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaanAaojanuaagaaaaaaaaaaaaalOalOalOalOalOalOalOaaaaaaaaaaaaaaaaaaaagaaaaaaaefapLahkaaaaaaaaaaaaaaaaaaakCaaaaaaaaabvwbvvbvvbwmbvvbvvbvvbwEbvvbvvbxuaaaaaAbxGapMapNapOajiapPapQapRamoapSajmajmapTapUapVapWapiapiapXapYapZanaajiaqaaqbaqcaqdaqeaqfajiaqgaqhabJabJaeCadSamoamoamoamoamoabpabpaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamoaoCagsaqiagsaqjamoamoamoaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvakmahcanYaqkaqlaqmaqnaqoaqpaqqafHafHaqraqsapAapAapBahcahcaqtapEbxUaqvaqwaqxaqyapEaqzamuaqAalIaaaaaaaaaaaaaaaaagagvahcagvaagaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaanAaqBaljaehaehaehaehaehaehaehaehaljaehaehaehaehaehaehaehaehaljaehaehalkaeMahkaaaaaaaaaaaaaaaaaaakCaaaaaabvwbyUbymbAabzjbzjbzjbzjbzjbzjbzjbwmbAqacyacyaqCaqDaqEapgaqFakQaqGamoaqHaqIaqJapTaqKaqLapdajmajmaqMapdaotanaajiaqNaqOaqPaqQaqRaqSajiabJaqTaqUaqUaqVadSabpaqWaqXaqYaqZaraablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagamoamoagsagsagsamoamoaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaagvarbarcardarearfargarharianYahMafHahcahcarjarkarlarmarlarlarlarnaroarparqarrarsapEaqzamuaqAalIaaaaaaaaaaaaaagaagafHartafHaagaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaaaaaabEIbEZbEZbEZbEZbEZbEZbEZbEZbEZbEZbGobFabGqbGpaqCaqDaruarvakQarwarwamoarxakQaryapTarzarAarBamfarCarDarEarFarGarHarHarHarHarHarIarIarIarJarIarIarIarKadSabpaqhabJabJabJaqhablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagamoanbanbanbamoaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaagaaaaaaafHafHarLahcanYarMarNarOarParQanYafHafHafHafHarRarSarTarUarVarWarXbGrarZasaasbascasdapEaseasfasgalIaaaaaaaaaaagaagaiDafHahdafHaiDaaaaaaaaaaaaaaaaaaaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaoTaaaaaaaaaaaaaaaaaaaoTaaaaaabGsbGubGtbGtbGvbGvbGvbGvbGvbGvbGvbwmacyacyacyaqCaqDaruajiasharwarwamoasiasiasjaskaslaqbawVasnasoanbapdaotaspasqasrassastasuasvaswaswaswaswaswasxarKadSabpabJabJasyabJabJablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHaszasAasBasCasDasEasFasGasHasIasDasJarkasKarkasLasMalIalIalIasNalIapEapEasOasPasQapEapEasRasSasTalIaagaagaagaiDaiDaiDaaQaagaagaiDaiDaiDaaaaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaaaaaaaaabGsbvvbvvbwmbvvbvvbvvbwEbvvbvvbGwaaaaaAbGxaqCaqDasUajiasVajiajiajiasWasWasXajiasWasYajiajiajiajiasZaotataasuatbatcatdasqaswateatfaswatgaswatharKadSabpatiabJaqhabJabJablaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaagaagaagagvatjahcatkatlatmatnatoatpatqatratsatoatoattarXarXarXatuatvalIatwatxatyatzatxatAatBatCatDatEatEatFasSatGalIaagaagaiDaiDaaQaaQaaQaagaagaaaaaaaiDaiDaaaaaaaaaaagaaaaaaaaaaagaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaagaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaagaagaagaagaagaiDaiDaiDaiDaiDaiDaaAacyacyacyaaAaaAaqCaqDatHatIatJatKatLatLatMatMatNatOatOatPajiatQatRatSatTanKatUatVatWatXatYasqatZauaarIarIarIarIarIarKadSabpabpaubabpabpabpabpaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaafHagvafHatkaucbapbapbapbapbapbapbapbapbapbapaWCaWCaWCaPcaPcaPcaugasSasSauhasSauiaujaukasSasSasSasSasSatGalIaagaiDaiDaaQaaQaaQaaQaagaagaaaaaaaaaaiDaiDaaaaaaaagaaaaaaaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaabGyanuaaaaaaaaaaaaaaaaaaaagaaaaaaaaQacybGzaddaddaddaddaqCaulaumaumaunauoaupauqauqauqauqauqauqaurausautauuausautauvapfauwauxauyauzauAauBauCauDauEauFauGarIaeCadSabJabJabJabJabpaagaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagaaaagvatkaucbapbiXawWbeGawXawZawYaxhaxabapaxmaxnaYHaxBaxAaxEaxCasSasSauhauNauOauPauQauRauSauRauRauRauTalIaagaiDaaQaaQaaQaaQaaQaagaagaaaaaaaaaaaaaiDaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaoTaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaaaaaaaagaaaaaaaaaacybGzaddaddaddaddauUauVauWauWauXaddaqDaddauYauZauZavaauZavbajiavcavdapgapYapZanaasqasuasqasuasqaveaswaswauFavfauFarIavgadSabpabJabJabJabpabpaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHafHafHatkaucbapbkaaxFbfRaxGbfTaxHayhaxKayjayiaykaYHaxBaxBaxEaxCasSavpauhavqalIavravsavtalIalIalIalIalIavuavuaiDaaQaaQaaQaaQaaQaaQaagaaaaaaaaaaaaaiDaagaagaagaaaaaaaaaaaaaaaaaaaagavvaaQaaQaaQaaQaaQaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaaaaagaaaaaaaaaavwavwavwavwavwaaAaaAaaAavxaaAavyaddaqDaddaruavzavzavzavzavzavAavzavzavzaosaotavBavCavDavDavDavCavEavFarIavGauFavHarIagnavIabpavJabJabJabJabpabpaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHahcahcahcafHafHahcatkaucbapbgSbgTbgUaylbgWbfUayJaymbapaykaykaYHayKayKaxEaxCavOavPavQavqalIavRavSavTavUavVavWavXavTavTavuaaQaaQaaQaaQaaQaaQaagaagaaaaaaaaaaaaaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaavvaaQaaQaaQaaQavvaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaagaaaavYavwavwavZavwawaavwavwavwawbawcaaAaqCaddaqDaddaruavzawdaweawfawhaxjawiayLayNapdaotanaawlawmawlawmawnarIawnarIarIarIarIarIaeCawoabpabpabpabpabJabJabpaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaWaaXaaXaaXaaYaaZabaabbabbabbabcaaaaaaaaeaagaagaaaaagaaaaaaaaaaagaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaffaeGaenafiafgafgafjaflafmafkafjafgafgafiafhafoafpaaaaaaaaaaaaafqaaaaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaagabWaaQafrafsaftafuafvafwadIadIadIafxabDabDabDabDaeVaeWafyaaAaetaetaetafzafAabkabkabkabkabkabkabkabkabkabkafnafnafnabkaeCadSafCacfafCabJabJabJabJabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafEafDafFaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafGaaaabqabqabqabqaaaaaZaaaabqabqabqabqaaaaagaaeaaaaagaagafHaaaaaaaaaafHaaaaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabradXafBabrafgafIafjafJafKafLafjafMafgafNafhadXabraaaaaaaaaaaaafqaefaegaehaeiaejaejaejaejaejaeiaejaejaeiaehafOafPafQafRaaQafSafTafUadIadIadIadIafVafWafXafXafYafZagaagbaevagcaevagdageabkagfagfagfaggaghagiagjagkagjaglagmagmabkagnagoagpafCagqagrabJabJabpabpaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagagtagsajjaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaguaguaguaguaagaaaaagaaaaaaaaZaaaaaaaagaaaaagaaaaaaaaeafHagvagvafHaaFaaFaaFafHagvagvafHaaaaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabragKagHabrafgafgafjagxagyagzafjafgafgabrafhagwabraaaaaaaaaaaaafqaeLaeMaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaeNagAagBagCagDagEagFadIadIadIadIaeVagGahtajoainagJagIaklaeZaeZaeZaeZagLabkagMagNagOagPaghagiagQagkagRaglagmagSabkagTagUagVagWagWaetabpabpabpaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaguagXagYagZahaahbaaZaaZaaZaaZaaaaagaagaaaaaaaaaafHafHafHahcahcahdaaQaaQaaQahdahcaheafHagvafHaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsahfahgabrahhahhahhahiahhahjahhahhahhabrahgagwabsaaaaaaaaaaaaafqahkaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaeNahlahmahnbntbhKbnxbnuahradIaeVahsakZasmaoJahuahvahvahvahvahvahvahvahvagNagkahwahxaghahyahzahzahAahBagmagmabkahCahDahEahEahEahEahEahEadqaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaagtagsajjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaagafHafHahFahGahHahFahFafHaaaaaaaaaaaaaaaaaaaaaaaaaaaafHafHahIahJahcahKafHahLahLahLafHahMaheahNahcafHafHaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrahOahPabrahQahRahSahTahUahVahWahRahXabrafhagwabraaaaaaaaaaaaafqahkaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaeNaeOafrafsaftbnyahYahZaeVagGauHauMauJaibahvaicaidaieaifaigaihaiiaijaikailahxaimaimavhaioaioaioaioaioabkaipaiqairaisadUadUadUaitaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHaivahFaiwaixaiyahFafHafHaagaagaagaagaagaagaagafHafHaizaiAaiBaiCahcafHaviavmavlaiDafHafHafHaiEaiFafHafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabraiGaiHaiIaiJaiKaiLaiMaiNaiOaiPaiPaiQaiIaiRadXabraaaaaaaaaaaaafqahkaefaegaeiaejaejaeiaejaejaeiaejaejaeiaehaehaehaehaehaehafOaiSafRaaQbnzafTaiTaeVaiUaiVaiWaiWaiXahvaiYaiZajaajbajcajdaiiajeajfajgahxaimajhajhaioajlajkakcakbaioaioaioaioaioajiablablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaagtagsajjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaaafHafHajnahcahFavKavoavLahFajpafHafHaaaaaaaaaaaaaaaaaaafHajqajrajsafHajtajuafHavNawjavNaagaagaagafHafHahcajvafHaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajwajxajyajzajAajBajCajDajEajFajGajHajIajJajKaaaaaaaaaaaaaaaafqahkaeLaeMaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaajLagBajMbhKagEajNaeVajOajPajQadIajRahvajSajTajUajVajWajXaiiajYaimajZahxaimakaakaaioakbakdakfakeagjakgagjakhakOakiaaaablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagafHafHakjakjakkafHagvawkagvafHahcajpafHafHaaaaaaaaaaaaafHafHakmahMaknafHakmahcafHavNawsavNaagaaaaaaaaaafHafHakoafHafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhahhakpakqakraksaktakuakvakwakxakyakzahhahhaagaagaagaagakAakBakCahkaaaaagaagaagaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaeNagAakDbnMakEadIaeVajOakFboEakGakGahvahvahvahvakHaiiaiiaiiakIakJakKakLakMakNboFakPakbakRaimakSakUakTakUalzalzakiaaaablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaagtagsajjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHafHaizaiAaiAaiAaiAaiAakVaiAakWaiAaiAakXafHafHagvagvafHafHaizakYafHafHafHakmahcafHawtawHawGaagaaaaaaaaaaagafHahcalaagvaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhahhalbalcalcaldalealfalcalgalhalialiaehaehaehaljaehalkaeMakCakCaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaallalmbnualnadIaeVajOaloakGalpalpalqalpalpalralsaltalualvalvalwalxalyalvalvalvaioalBalAalDalCagjalEagjamnalzakiaaaablaeCalFaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHaizakYafHafHafHafHagvagvagvagvafHafHalGaiBaiBaiAaiAaiAaiAalHafHafHaagafHakmalIalIalIalJalIboGbqhalMalNaaaafHafHahdafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalOahhalPalQalRalSalQalTalRalQahhahhalOaaaaaaaaaaagaaaaaaaaaakCakCaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaalUalVaftbnyalWalXaeVajOaloakGalYalZamaambbqiamdameamfamgamhamhamiamjamkamhamlammaioampakbakbaioaioaioaioaioaioaioalvalvamqalyawnawnawnawnaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagagtagsajjaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHakmafHafHaagaagaagaagaagaagaagaagafHafHafHafHamragvafHafHafHafHaagaagafHakmalIamsamtamuamvamwbsCamyamzamAaagabWaaQamBaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagalOahhamCalRalQamDamEamFalQalRaagaagalOaaaaaaaaaaagaaaaaaaaaafqamGaaaaaaaaaaaaaaaaaaakAamIamJamJaljamJamJamJaljamJamJamJamKamLaaQbnzafTamMaeVajOamNakGamOamPamQamRamSamTamUamVamWamVamVamXamYamVamVamZanaancakbakbakbandaneakbakbakbanfaioakbanganhalyanjaniankauDaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagawnafEafDafFawnaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvaizakYafHaagaagaagafHagvagvagvafHaagaagaagaagaagaagaagaagaagaagaagaagafHafHakmalIanlamuamuanmannbtjaaQanpanqaehaekaeianraehaehaehansaehaehaehaljaehaehaehansaehantanuaaaaaaaaaaagaaaalOahhakualQanvanwanxanyanzalQaagaagalOaaaaaaaaaaagaaaaaaaaaahkahkaaaaaaaaaaaaaaaaaaaeLaeMaaaaaaaaaaaaaaaaaaaagaaaaaaaaaanAanBajMbhKagEanCaeVajOaiaakGanDanEanFanFanGalranHanIanIanIanIanIanIanIanJaxoarGanLakbakbakbakbakbakbakbanMakbanLakbanNanPanOanQaswanRauDaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaagawnawnagtagsajjawnawnaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvakmanXanYanYanYanYanYanZahcaoaafHafHafHafHafHafHamrafHafHagvagvagvagvafHakjaobaocaodamuamuaoeaofbtFafraohaoiaagabWaaQamBaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaanAaojanuaaaaaaaagaaaalOahhaokalQalQaolaomaonalQalQaagaagalOaaaaaaaaaaagaaaaaaaaaahkahkaaaaaaaaaaaaaaaaaaahkaaaaaaaaEaaFaaFaaFaaFaaFaaFaaFaaFaaFbvdakDbnMaooadIaopaoqaiaakGanDanEanFanFaoralramoamoamoamoamoamoamoamoaosaotaouanSanTanTanTanUakbanVaioaioaioaioalvamqalyalvaovanWaowauDaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagawnaoxagsaoyagsagsawnawnawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaagvakmanXanYaoEaoFaoGanYaoHahcahcafHahcahcaoIahcafHawIaoKafHahcahcaoLahcaizaiAakYalIaoMamuamuaoNaoObvsaoQaoRaaaaagafHahdafHaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaanAaojanuaaaaagaaaalOalOalOalOalQalQalQalQalQalOalOalOalOaaaaaaaaaaagaaaaaaaaaaoSaoSaaaaaaaaaaaaaaaaaaaoTaagaagaeNahLahLahLahLahLahLahLahLaaAaaAacyaaAaaAaaAaoUaoVaoWakGalralralralralralrajmaoXaoYaoZapaapbapcanbapdapeapfaozaoBaoAaoAaoAaoDaoCaioaplapmapnapoaeCadSawnapjaphappapkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagsagsaprapqagsagsaoxapsawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagagvakmaivanYbvtapxapyanYanYanYapzapAapAapBapCahcafHafHafHafHapDapEapEapEapFapEapEapEapGamuapHalIbvubvuahLapJaaaaagafHapKafHaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaanAaojanuaagaaaaaaaaaaaaalOalOalOalOalOalOalOaaaaaaaaaaaaaaaaaaaagaaaaaaaefapLahkaaaaaaaaaaaaaaaaaaakCaaaaaaaaabvwbvvbvvbwmbvvbvvbvvbwEbvvbvvbxuaaaaaAbxGapMapNapOajiapPapQapRamoapSajmajmapTapUapVapWapiapiapXapYapZanaaioapuaptaqaapvaqdaqcaioaqgaqhabJabJaeCadSawnawnawnawnawnabpabpaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagawnaoxagsaqeagsaqfawnawnawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvakmahcanYaqkaqlaqmaqnaqoaqpaqqafHafHaqraqsapAapAapBahcahcaqtapEbxUaqvaqwaqxaqyapEaqzamuaqAalIaaaaaaaaaaaaaaaaagagvahcagvaagaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaanAaqBaljaehaehaehaehaehaehaehaehaljaehaehaehaehaehaehaehaehaljaehaehalkaeMahkaaaaaaaaaaaaaaaaaaakCaaaaaabvwbyUbymbAabzjbzjbzjbzjbzjbzjbzjbwmbAqacyacyaqCaqDaqEapgaqFakQaqGamoaqHaqIaqJapTaqKaqLapdajmajmaqMapdaotanaaioaqjaqiaqOaqNaqPaqPaioabJaqTaqUaqUaqVadSabpaqWaqXaqYaqZaraablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagawnawnagsagsagsawnawnaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaagvarbarcardarearfargarharianYahMafHahcahcarjarkarlarmarlarlarlarnaroarparqarrarsapEaqzamuaqAalIaaaaaaaaaaaaaagaagafHartafHaagaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaaaaaabEIbEZbEZbEZbEZbEZbEZbEZbEZbEZbEZbGobFabGqbGpaqCaqDaruarvakQarwarwamoarxakQaryapTarzarAarBamfarCarDarEarFarGarHarHarHarHarHaqQaqQaqQaqRaqQaqQaqQarKadSabpaqhabJabJabJaqhablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagawnauDauDauDawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaagaaaaaaafHafHarLahcanYarMarNarOarParQanYafHafHafHafHarRarSarTarUarVarWarXbGrarZasaasbascasdapEaseasfasgalIaaaaaaaaaaagaagaiDafHahdafHaiDaaaaaaaaaaaaaaaaaaaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaoTaaaaaaaaaaaaaaaaaaaoTaaaaaabGsbGubGtbGtbGvbGvbGvbGvbGvbGvbGvbwmacyacyacyaqCaqDaruajiasharwarwamoasiasiasjaskaslaqbawVasnasoanbapdaotaspasqasrassastasuarIaqSaqSaqSaqSaqSarJarKadSabpabJabJasyabJabJablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHaszasAasBasCasDasEasFasGasHasIasDasJarkasKarkasLasMalIalIalIasNalIapEapEasOasPasQapEapEasRasSasTalIaagaagaagaiDaiDaiDaaQaagaagaiDaiDaiDaaaaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaaaaaaaaabGsbvvbvvbwmbvvbvvbvvbwEbvvbvvbGwaaaaaAbGxaqCaqDasUajiasVajiajiajiasWasWasXajiasWasYajiajiajiajiasZaotataasuatbatcatdasqaqSasvasxaqSateaqSatfarKadSabpatiabJaqhabJabJablaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaagaagaagagvatjahcatkatlatmatnatoatpatqatratsatoatoattarXarXarXatuatvalIatwatxatyatzatxatAatBatCatDatEatEatFasSatGalIaagaagaiDaiDaaQaaQaaQaagaagaaaaaaaiDaiDaaaaaaaaaaagaaaaaaaaaaagaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaagaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaagaagaagaagaagaiDaiDaiDaiDaiDaiDaaAacyacyacyaaAaaAaqCaqDatHatIatJatKatLatLatMatMatNatOatOatPajiatQatRatSatTanKatUatVatWatXatYasqathatgaqQaqQaqQaqQaqQarKadSabpabpaubabpabpabpabpaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaafHagvafHatkaucbapbapbapbapbapbapbapbapbapbapaWCaWCaWCaPcaPcaPcaugasSasSauhasSauiaujaukasSasSasSasSasSatGalIaagaiDaiDaaQaaQaaQaaQaagaagaaaaaaaaaaiDaiDaaaaaaaagaaaaaaaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaabGyanuaaaaaaaaaaaaaaaaaaaagaaaaaaaaQacybGzaddaddaddaddaqCaulaumaumaunauoaupauqauqauqauqauqauqaurausautauuausautauvapfauwauxauyauzauAauaatZauCauBauFauEaqQaeCadSabJabJabJabJabpaagaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagaaaagvatkaucbapbiXawWbeGawXawZawYaxhaxabapaxmaxnaYHaxBaxAaxEaxCasSasSauhauNauOauPauQauRauSauRauRauRauTalIaagaiDaaQaaQaaQaaQaaQaagaagaaaaaaaaaaaaaiDaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaoTaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaaaaaaaagaaaaaaaaaacybGzaddaddaddaddauUauVauWauWauXaddaqDaddauYauZauZavaauZavbajiavcavdapgapYapZanaasqasuasqasuasqauGaqSaqSauFaveauFaqQavgadSabpabJabJabJabpabpaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHafHafHatkaucbapbkaaxFbfRaxGbfTaxHayhaxKayjayiaykaYHaxBaxBaxEaxCasSavpauhavqalIavravsavtalIalIalIalIalIavuavuaiDaaQaaQaaQaaQaaQaaQaagaaaaaaaaaaaaaiDaagaagaagaaaaaaaaaaaaaaaaaaaagavvaaQaaQaaQaaQaaQaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaaaaagaaaaaaaaaavwavwavwavwavwaaAaaAaaAavxaaAavyaddaqDaddaruavzavzavzavzavzavAavzavzavzaosaotavBavfavCavCavCavfavEavDaqQavFauFavGaqQagnavIabpavJabJabJabJabpabpaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHahcahcahcafHafHahcatkaucbapbgSbgTbgUaylbgWbfUayJaymbapaykaykaYHayKayKaxEaxCavOavPavQavqalIavRavSavTavUavVavWavXavTavTavuaaQaaQaaQaaQaaQaaQaagaagaaaaaaaaaaaaaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaavvaaQaaQaaQaaQavvaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaagaaaavYavwavwavZavwawaavwavwavwawbawcaaAaqCaddaqDaddaruavzawdaweawfawhaxjawiayLayNapdaotanaavHauCavHauCavHaqQavHaqQaqQaqQaqQaqQaeCawoabpabpabpabpabJabJabpaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaySahcazdahcahcafHahcawpaucbapaWCaWCaWCazeazfbeFayJazgaSwaSwaSwaSwazhaSwaSwaugavOawuavQawvalIawwawxavTavTavTavTawyavTavTawyaagaagaaQaagaagaaQaagaaaaaaaaaaaaaaaaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaQaaQavvawzaaQaaQaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaagavYavYavZavZavZavwawaawaawaavwavwawAaaAaqCaddaqDaddaruavzawBawCawDawEawFazjaziazkapYapZanaawmawJawKawLawMawNawOawPawPawPawPawQawRawSawTablaaaabpabpabJabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagafHazmazlaAdaAcahcamrahcawpawUbapbiXbiYbiZaAebjbbfUayJaAfaSwaAgaAhaAhaAhaAiaSwaugavOaxdavQavqalIawwawxavTavTavTavTavXaxeavTavXaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaagaaaaagaagaagaagaagaagaagaagaaQaaQbHxaxfaaQaaQaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUapLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGNbHyaaaaaaavYavYavZavZavZavZavwawaawaawaawaavwaaAaaAaqCaddaqDaddaruavzaxgaAjaxiawgaxkaxlaAkaATatTaxoaxpaxqaxraxraxraxsaxtawOawPaxuaxvawPawQaxwaxxaxyabpabpaagablabJaxzablaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaknahcaAWahcahcafHaAYaAXaBaaAZaBcaBbaBfaBebjbaBgaBiaBhaSwaBOaPeaPeaPeaBPaSwaugasSaxLauhaxMalIawwaxNaxOaxOavuavuavuavuavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiDaagaagaagaaaaaaaaaaaaaaaaaaaaaavvaaQaaQaaQaaQavvaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaaaavwavZavZavZavZavZavwawaawaawaawaawaaaAaaAaxQaddaqDaddaruavzaxRaxSaxTaxjaxUaxVaxWaxXaxYaxZayaaybaycaydayeayfawQawQawPawPawPawPawQaygagnadSabJabpablabpabJabJablaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7100,43 +7087,43 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvahcaAQaCKaAQamrahcawpaHJaEIaHLaHKaMoaIkaEIbapaIlbapaSwaSwaxEaImaInaSwaSwayTasSasSauhavqalIawwawxaFCaFDavuaagaaaavuavuavuavuaagaagaagaagaFEaFFaFGaCkaCkaFHaFIaFJaFKaFLaDiavTaFMaFNaagaagaagaagaagaagaagaagaagaagaagaagaagaagaFOazpaeiazqaFPaagaagaagaagaagaagaagaagaagaagaagaagaagaagaFHaFQaFRaFRaFRaFSaFGaCkaFTaFUaFVaCkaFWaFWaFWaFWavwaFXavwavwavwaagaagaagaagacyaFYaAsaBnaddaFZaGaaGbaGcaGdaGeaGfaGfaGgaDsbNGaIpaGjaIHaIHbNGazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaGnaGoaGpabpaGqaGraGsaGtaGuaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJbOVaaaaaaaaaaaaaaaaaabNJbQsbQrbQrbQrbQrbQrbQrbQtbOVaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHaDJaDKaDLafHahcaEHawUaEIaIJaIIaJcaJbaJeaJdaJgaJfaJfaJkaJfaJGaJIaJHalIaxCasSaGGaGHaGIaGJaGKaGLavTaGMavuavuavuavuaGNaGOavXaaaaaaaaaaaaaEOaGPaGQaGQaGQaGQaGRaGSaGTaGUawxaGVaGWaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaalUaETaAoahLapJalOalOalOalOalOalOalOalOalOalOalOalOalOalOalOaGXaFRaFRaGYaGZaHaaHbaHcaHdaHeaHfaHgaHhaHhaHhaHhaHhaHiaGSaaaaaaaaaaaaaagaaaacyaHjaHkaHladdaFZaHmaHnaGcaHoaHpaHqaHqaHraDsaEtbRmaEtaEtaEtaEtazWaCuaCuaCuaCuaHtaHuazMaHvaHtaCuaCuaCuaCuazWaHwaHxaHyaHzaHAaHBaEuaHCaHDaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSJbTVbOVaaaaaaaaaaaabNJbTZbUabUabUcbUbbUabUabUabUabUdaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHafHafHahcawpawUaEIaJSaJRaJUaJTaKoaKnaKqaKpaKraKraKraKtaDVaKuaKzaxCasSaukaHMaHNalIawwawxavTavTaCiavTavTavTavTavTavXaaaaaaaaaaaaaaaaHOaHOaHOaHPaHOaHOaaaaaaaHQaENaGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaHQaHRaFRaHSaHTaHUaHVaHOaeNaHWapJaHOaHOaHOaHOaHOaHOaHOaaaaaaaaaaaaaagaagaagacyaHXaAsaHYayqaHZaIaaIbaGcaGdaIcaIdaIdaIeaDsaEtaEtaEtaEtaEtaEtazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIfaIgadSabpaBKaIhaIiaIiaIjaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBbUfbOVaaaaaabNJchtbTZbUabUabUabUabUabUabUacmicyQbQrbOVaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaafHahcawpawUaEIaKAaKAaKFaKBaEIaEIaLbaUlaLdaLcaLeaLeaLhaLgalIaxCasSaIqaHMaIralIawwaFLaDiaChaLlaLlaLlaLlavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaGTaIsaHSaItaGWaaaaaaaaaahkaaaaaaaaaaaabdibdibdiaIuaIuaIuaIuaLmaLmaaaaagacyaIvaIwaIxaddasUaDsaIyaIzaIAaIcaIBaICaIDaDsaEtaEtaEtaEtaEtaEtazWaEtaIEaEtaIFaFmazMazMazMaFnaIGaEtaIEaEtazWaeCabpadSabpaBKaFsaFsaFsaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRbUfbOVbNJchtcySbUdcyTbUabUabUabUabUabUabUacyVcyUcyWaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagafHafHawpawUaueaLnaJfaJGaLoaLpaJfaLraUlaLtaueaueaueaueauealIaugasSasSaHMaIKalIaILavTawxaIMaJjaLLaLKaJjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaHQaINaGWaaaaaaaaaaaaahkaaaaaaaaabdibdibdibdiaIuaIuaIuaIuaIuaLmaLOaLmaIOaqCaddaIPaIQaruaDsaIRaGcaGdaIcaISaITaIUaDsaEtaEtaIVaEtaEtaEtazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaIWabpaIXabpaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQbTVcySbUabUdcyTbUabUabUabUabUacyXchtbQrbTVcyYbOVaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHaagaagaszaIZaJaaueaLPavnaLRaLQaLSaKraLVaLTaLYaWKaMaaLZaPYaPZalIaugasSasSaJhaJialIawwavTawxaJjaJjaMeaMbaJjaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaFEaJlaJmaagaagaagaagaoTaagaagaagbdibdiaMnaMmaJoaJpaJVaIuaIuaLmaLOaLmaIOaqCaJqaJraJsaruaJtaJuaJvaJwaJxaJxaJxaJxaJtazWaJyaJzaJzaJAazWazWaCuaCuaCuaCuaHtaJBazMaJCaHtaCuaCuaCuaCuazWaeCabpaJDabpabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZbQrczacyRczbbUaczcbUacyQczeczdbUabUabUacyXchtcySczfczfczgbTZaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaagvanXafHafHafHawpaJEaJFaueaMpavnaMraMqaDVavMavMavMaMtaMsaMvaMuaMCaRualIaugasSasSaJKaJLalIaJMaJNaJOaJjaJPaJQaMDaJjaMEaMGaMFaMlaMlaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaabdibdiaMnbPLaJVaJoaJVaIuaIuaLmaLOaLmaIuaqCaJqaJXaJsaruaJtaJYaJZaKaaKbaKbaKcaKdaJtaKeaKfaKgaKhaKiczhazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIWabpadSaKkabJabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJchtbQrbTZbUabUabUaczgbTVbQrbQrbQtcyYchtcySbUaczicziczjbUdaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvagvahcahcahcahcaKlaKmaMJaueaMKavnaMPaMOaMSaMQaNkaNjaNlaueaNnaNmaNoaRualIayTasSasSauhavqalIaKvavTawxaJjaKwaKxaKyaJjaNsaNxaNxaNyaMlaMlaaaaaaaaaaaaaaaaagaagaagaagaagaKCaFFaKDaagaagaagaagaagaagaagazoazpaeiazqazraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamHaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaabdibdiaMnaNzaKEaJnaJVaIuaIuaLmaLOaLmaIuavyaJqaKGaJsaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaKNabJaKOaKPaKQazWaEtaEtaEtaKRaFmazMazMazMaFnaKSaEtaEtaEtazWaeCabJadSabpabpabpaagaagaaaabpabpablabpabpaaFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJcyYbTVcySbUabUdbUabUabUabUabUabUabUabUaczgbTZbUabUabUabUabUaczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagagvagvahcahcafHafHafHaKVaKWaMJaueaNBaNAaNAaNIaNMaueaJJaueaJJaueaueaueaueauealIaugasSasSauhavqalIawwaCiawxaJjaLiaLjaLkaJjaNNaNPaNOaOhaOgaMlaaaaaaaaaaaaaagaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaalUaxPaAoahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaabdibdiaMnaOiaJVaLsaJVaIuaIuaLmaLOaLmaIuaqCaddaLuaLvaruaJtaLwaLxaKHaLyaLzaLzaLAaJtaKMaLBaKgaKOaLCaKgazWaEtaEtaEtaEsaLDazMczlazMaGlaEpaEoaEoaGmazWaeCabJadSabpaaaaaaaaaaagabpabpczmaNgaOeabpabpabpbNJcyYbQrbQrbQrbQrbQrbQrbQrcyYbOVaaabNJchtcySbUabUabUabUdbUabUacyXbQrbQrbQtczebUabUabUdbUabUabUabUabUaczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvaLIaLJafHafHaagafHaOfaKWaueaueaueaueaOuaOjaOvaueaLUaOwaKsaODavnauKaIoavnalIaugasSasSauhavqalIawwavuawxaJjaJjaLWaLXaJjaNNaPgaPfaOhaPhaMlaMlaaaaaaaagaagaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaalUaxPaoiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFGaagaagamHaagaoTaagaagaagbdibdibdiaPiaMcaMdaJWaIuaIuaIuaIuaIuaIuaqCaddaBnaddaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaMfabJaKMaMgaMhazWazWazWazWazWazWazWazWazWazWazWazWazWazWazWaeCabJadSabpabpabpabpabpabpaLGaLGcznaLGablaLGablchtcySbUabUabUabUabUabUabUaczgchtbQrchtcySbUabUabUabUaczobUabUabUdczpczqbUabUdbUabUaczkbUabUabUaczrczsczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcaMjafHaagaaaagvaMkaKWaueaPsaPtaWKaPTaPuaLtaufaMwavnavnavnavnavnavnaMxalIaxCasSasSauhavqalIawwaCiawxaMyaMzaMAaMBaMyaPUaPVaPVaPXaPWaQkaMlaaaaagaagaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaalUaxPaoiaaaaaaaagaaaaaaaaaaaaaaaaaacztcztcztcztcztaaaaaaaaaaaaaaaaaaamHaaaaaaaaaaaaaaaaaaaAOaAOaAOaEOaMHaMIaGSaaaaaaaaaahkaaaaaaaaaavvaagbdiaQlaMLaMMaMNaMNaQnaQmaQMaQLaQmczuaRlaBnaddaruaJtaMTaKHaRmaMUaMUaMUaMVaJtaKMaMWabJaMXaMYaMZadUadUadUadUadUadUadUadUadUadUadUadUadUadUadUaNaaeZaNbaeZaeZczvaeZaeZczwczxczxczyczxczAczzaRgbQtbUabUabUabUabUabUabUabUabUabQtbUabQtbUabUabUabUabUaczBbUabUabUdbUabUabUabUdbUabUaczBbUabUabUaczCczDczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcaNhafHafHafHafHaNiaKWaueaRnavnbbvaRpaRoaRqaNpaxJaNqavnavnavnaRravnaNraRsaxCasSasSauhawvalIawwavTawxaMyaNtaNuaNvaNwaRtaSyaSxaSAaSzaSHaMlaagaagaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaalUaxPaoiaaaaaaaaaaagaaaaaaaaaaaacztcztaNCaOxaOyaOzaNCcztcztaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaDjaNDczEaNFaDnaGTaNGaGSaaaaaaaaaahkaaaaaaaaaaLqaNHbdiaSIaNJaNKaNLaSJaTxaThaTzaTyaTBczFaTCaBnaddasUaJtaJtaNRaJtaNSaNSaNSaJtaJtaNTaNUaNVaKMaNWaNXaBIaBIaBIaBHaBHaBIaBIaNYaBIaBIaNYaBIaBIaNZaOaahEaBIaObabpabpaOcabpabpabpaOdaLGaLGaLGablaLGablchtczebUabUabUabUabUabUaczGcyXchtbQrchtczebUabUabUabUaczobUabUabUdbUaczHbUabUdbUabUaczkbUabUabUaczrczrczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcahcahcahcahcafHaPbaKWaueaVJaMPaTDaTEaMOaTFaLfaUBaUbaUEaUCaUGaUFaOkaOlalIaxCasSasSauhavqaOmaOnaOoaOpaMyaOqaOraOsaOtaUHaNxaNxaNyaUIaUJaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaalUaxPaeMaaaaaaaaaaaaaagaaaaaaaaacztaNCaPvaPwaPxaPyaPzaPAaPBaNCcztaaaaaaaaaaagaaaaaaaaaaaaaEOaFQaOAaOBaFRaFSaOCaNGaGSaaaaaaaaaahkaaaaaaaaaaLqaagbdiaUKaOEaOFaOGaOHaOIaIuaUYaULaIubHAaNQaBnaddatHatKatMatMczIaOJaOJaOJaOKaOLaIgaOMaONaKMaOOaOPabpaOQabpaORaOSabpaOTaOUabJabJaOVaOWabpabpabpabpabpaaQablaOXaOYabJablabpabpczJaLFaPaabpabpabpczKbTVbQrbQrbQrbQrbQrbQrbQrbTVczLaaaczKchtczebUabUabUabUdbUabUabUdbUaczNczMbUdbUabUabUdbUabUabUabUabUaczkaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaafHahcawpawUaEIaKAaKAaKFaKBaEIaEIaLbaUlaLdaLcaLeaLeaLhaLgalIaxCasSaIqaHMaIralIawwaFLaDiaChaLlaLlaLlaLlavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaGTaIsaHSaItaGWaaaaaaaaaahkaaaaaaaaaaaaaIuaIuaIuaIuaIuaIuaIuaagaagaaaaagacyaIvaIwaIxaddasUaDsaIyaIzaIAaIcaIBaICaIDaDsaEtaEtaEtaEtaEtaEtazWaEtaIEaEtaIFaFmazMazMazMaFnaIGaEtaIEaEtazWaeCabpadSabpaBKaFsaFsaFsaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRbUfbOVbNJchtcySbUdcyTbUabUabUabUabUabUabUacyVcyUcyWaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagafHafHawpawUaueaLnaJfaJGaLoaLpaJfaLraUlaLtaueaueaueaueauealIaugasSasSaHMaIKalIaILavTawxaIMaJjaLLaLKaJjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaHQaINaGWaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaIuaIuaIuaIuaIuaIuaIuaagaaaaagaaAaqCaddaIPaIQaruaDsaIRaGcaGdaIcaISaITaIUaDsaEtaEtaIVaEtaEtaEtazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaIWabpaIXabpaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQbTVcySbUabUdcyTbUabUabUabUabUacyXchtbQrbTVcyYbOVaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHaagaagaszaIZaJaaueaLPavnaLRaLQaLSaKraLVaLTaLYaWKaMaaLZaPYaPZalIaugasSasSaJhaJialIawwavTawxaJjaJjaMeaMbaJjaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaFEaJlaJmaagaagaagaagaoTaagaagaagaIuaIuaJVaJnaJoaJpaJVaIuaIuaagaaaaagaaAaqCaJqaJraJsaruaJtaJuaJvaJwaJxaJxaJxaJxaJtazWaJyaJzaJzaJAazWazWaCuaCuaCuaCuaHtaJBazMaJCaHtaCuaCuaCuaCuazWaeCabpaJDabpabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZbQrczacyRczbbUaczcbUacyQczeczdbUabUabUacyXchtcySczfczfczgbTZaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaagvanXafHafHafHawpaJEaJFaueaMpavnaMraMqaDVavMavMavMaMtaMsaMvaMuaMCaRualIaugasSasSaJKaJLalIaJMaJNaJOaJjaJPaJQaMDaJjaMEaMGaMFaMlaMlaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaJVaJoaJVaJoaJVaIuaIuaagaaaaagacxaqCaJqaJXaJsaruaJtaJYaJZaKaaKbaKbaKcaKdaJtaKeaKfaKgaKhaKiczhazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIWabpadSaKkabJabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJchtbQrbTZbUabUabUaczgbTVbQrbQrbQtcyYchtcySbUaczicziczjbUdaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvagvahcahcahcahcaKlaKmaMJaueaMKavnaMPaMOaMSaMQaNkaNjaNlaueaNnaNmaNoaRualIayTasSasSauhavqalIaKvavTawxaJjaKwaKxaKyaJjaNsaNxaNxaNyaMlaMlaaaaaaaaaaaaaaaaagaagaagaagaagaKCaFFaKDaagaagaagaagaagaagaagazoazpaeiazqazraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamHaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaJVaJpaKEaJnaJVaIuaIuaagaaaaagacxavyaJqaKGaJsaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaKNabJaKOaKPaKQazWaEtaEtaEtaKRaFmazMazMazMaFnaKSaEtaEtaEtazWaeCabJadSabpabpabpaagaagaaaabpabpablabpabpaaFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJcyYbTVcySbUabUdbUabUabUabUabUabUabUabUaczgbTZbUabUabUabUabUaczkaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagagvagvahcahcafHafHafHaKVaKWaMJaueaNBaNAaNAaNIaNMaueaJJaueaJJaueaueaueaueauealIaugasSasSauhavqalIawwaCiawxaJjaLiaLjaLkaJjaNNaNPaNOaOhaOgaMlaaaaaaaaaaaaaagaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaalUaxPaAoahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaJVaIOaJVaLsaJVaIuaIuaagaaaaagacxaqCaddaLuaLvaruaJtaLwaLxaKHaLyaLzaLzaLAaJtaKMaLBaKgaKOaLCaKgazWaEtaEtaEtaEsaLDazMczlazMaGlaEpaEoaEoaGmazWaeCabJadSabpaaaaaaaaaaagabpabpczmaNgaOeabpabpabpbNJcyYbQrbQrbQrbQrbQrbQrbQrcyYbOVaaabNJchtcySbUabUabUabUdbUabUacyXbQrbQrbQtczebUabUabUdbUabUabUabUabUaczkaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvaLIaLJafHafHaagafHaOfaKWaueaueaueaueaOuaOjaOvaueaLUaOwaKsaODavnauKaIoavnalIaugasSasSauhavqalIawwavuawxaJjaJjaLWaLXaJjaNNaPgaPfaOhaPhaMlaMlaaaaaaaagaagaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaalUaxPaoiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFGaagaagamHaagaoTaagaagaagaIuaIuaIuaLmaMcaMdaJWaIuaIuaIuaIuaIuaIuaqCaddaBnaddaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaMfabJaKMaMgaMhazWazWazWazWazWazWazWazWazWazWazWazWazWazWazWaeCabJadSabpabpabpabpabpabpaLGaLGcznaLGablaLGablchtcySbUabUabUabUabUabUabUaczgchtbQrchtcySbUabUabUabUaczobUabUabUdczpczqbUabUdbUabUaczkbUabUabUaczrczsczkaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcaMjafHaagaaaagvaMkaKWaueaPsaPtaWKaPTaPuaLtaufaMwavnavnavnavnavnavnaMxalIaxCasSasSauhavqalIawwaCiawxaMyaMzaMAaMBaMyaPUaPVaPVaPXaPWaQkaMlaaaaagaagaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaalUaxPaoiaaaaaaaagaaaaaaaaaaaaaaaaaacztcztcztcztcztaaaaaaaaaaaaaaaaaaamHaaaaaaaaaaaaaaaaaaaAOaAOaAOaEOaMHaMIaGSaaaaaaaaaahkaaaaaaaaaavvaagaIuaLOaMLaMMaMNaMNaQnaQmaQMaQLaQmczuaRlaBnaddaruaJtaMTaKHaRmaMUaMUaMUaMVaJtaKMaMWabJaMXaMYaMZadUadUadUadUadUadUadUadUadUadUadUadUadUadUadUaNaaeZaNbaeZaeZczvaeZaeZczwczxczxczyczxczAczzaRgbQtbUabUabUabUabUabUabUabUabUabQtbUabQtbUabUabUabUabUaczBbUabUabUdbUabUabUabUdbUabUaczBbUabUabUaczCczDczkaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcaNhafHafHafHafHaNiaKWaueaRnavnbbvaRpaRoaRqaNpaxJaNqavnavnavnaRravnaNraRsaxCasSasSauhawvalIawwavTawxaMyaNtaNuaNvaNwaRtaSyaSxaSAaSzaSHaMlaagaagaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaalUaxPaoiaaaaaaaaaaagaaaaaaaaaaaacztcztaNCaOxaOyaOzaNCcztcztaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaDjaNDczEaNFaDnaGTaNGaGSaaaaaaaaaahkaaaaaaaaaaLqaNHaIuaMmaNJaNKaNLaSJaTxaThaTzaTyaTBczFaTCaBnaddasUaJtaJtaNRaJtaNSaNSaNSaJtaJtaNTaNUaNVaKMaNWaNXaBIaBIaBIaBHaBHaBIaBIaNYaBIaBIaNYaBIaBIaNZaOaahEaBIaObabpabpaOcabpabpabpaOdaLGaLGaLGablaLGablchtczebUabUabUabUabUabUaczGcyXchtbQrchtczebUabUabUabUaczobUabUabUdbUaczHbUabUdbUabUaczkbUabUabUaczrczrczkaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcahcahcahcahcafHaPbaKWaueaVJaMPaTDaTEaMOaTFaLfaUBaUbaUEaUCaUGaUFaOkaOlalIaxCasSasSauhavqaOmaOnaOoaOpaMyaOqaOraOsaOtaUHaNxaNxaNyaUIaUJaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaalUaxPaeMaaaaaaaaaaaaaagaaaaaaaaacztaNCaPvaPwaPxaPyaPzaPAaPBaNCcztaaaaaaaaaaagaaaaaaaaaaaaaEOaFQaOAaOBaFRaFSaOCaNGaGSaaaaaaaaaahkaaaaaaaaaaLqaagaIuaMnaOEaOFaOGaOHaOIaIuaUYaULaIubHAaNQaBnaddatHatKatMatMczIaOJaOJaOJaOKaOLaIgaOMaONaKMaOOaOPabpaOQabpaORaOSabpaOTaOUabJabJaOVaOWabpabpabpabpabpaaQablaOXaOYabJablabpabpczJaLFaPaabpabpabpczKbTVbQrbQrbQrbQrbQrbQrbQrbTVczLaaaczKchtczebUabUabUabUdbUabUabUdbUaczNczMbUdbUabUabUdbUabUabUabUabUaczkaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHafHafHafHahcaVDaVEaKWaueaueaueaueaVGaVFaLtbgZbgZbgZbgZbgZbgZbgZbgZbgZalIaPjaPkasSauhaPlaOmaPmaPnaPoaMyaPpaPqaPraMyaVHaWaaVIaOhaWDaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaalUaxPaeMaaaaaaaaaaaaaaaaagaaaaaacztaNCaQpaQqaQraQsaQtaQuaQvaQwaQxaNCcztaaaaaaaagaagaagaagaagaKCaPCaPDaFRaFRaFRaPEaPFaJmaagaagaagaoTaagaagaagaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaxQaNQaBnaddaddaBnaddaddaddaddaddaddaPHabpabJaPIaONaPJaPKaPLaPMaPMaPMaPMaPMaPMaPNabJaPOaPOabJabJablahLaeOaPPahLahLabpabpabJabpabpahLabpabpablabpabpahLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKbTVcyYczeczObUdbUabUaczgbQtbQrbQrcySbUabUabUdczrbUabUabUabUaczkaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaCSahMaySafHarjaWEaWFaRjaueaPsaPtaWKaWGaPuaLtbgZaWIaWHaXIaWJbhUaXJbhWbhXalIaQaaugasSauhaQbaQcaQdaQeaQfaQgaQhaQiaQjaMyaXKaXMaXLaOhaXNaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaQoaGSalUaxPaoiaaaaaaaaaaaaaaaaaaaagaaaaaaaNCaQpaPxaRHaRHaRIaRJaRKaRHaRHaPzaQxaNCaaaaaaaagaaaaaaaaaaaaaEOaQyaFRaFRaFRaQzaQAaNGaGSaaaaaaaaaahkaaaaaaaaaaPGaQBaQCaQDaQEczPaQGaQHaQIaQJaQKaXOaXPaMRaQNaQOaQPaQPaQQaQRaQSaQTaQPaQPaQPaQUaQVaQWaQXaQYaQZaRaaPLaRbaRcaRdaReaRfaPMabpabpabpabpabpaiDaiDaagabWamBaagaagaagabpaRgabpaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKchtbQrbTZbUabUabUabUabUabUabUabUabUabUdczrbUabUabUabUabUdaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbahcaXQafHaStaSuaXRaSvaueaRnavnbbvaXSaVFaLtbgZaYIaWHaXIaYJbjibjibjibjjalIczQaugaRwaRxaRyaOmaRzaRAaRBaMyaRCaRDaREaMyaPUaPVaPVaPXaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaalOaRFaRGayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaagaaacztaNCaSLaSMaSNaSOaSPaSQaSRaSSaSTaSUaSVaNCcztaaaaagaaaaaaaaaaaaaaaaGTaRLaRMaRNaGWaDjaNGaGSaaaaaaaaaahkaaaaaaaaaaPGaROaRPaRQaRRaRSaRSaRTaRUaQFaRVaRWaPGaRXaRYaRZaRZaRZaSaaSaaSbaScaSdaSdaSdaSeaezaSfaSgaShaSiaSjaSkaSlaSmaSnaSoaSpaPMaaQamBaaaaSqaSraSraSraSsabWamBaaaaaaaagalOalOalOaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSJbQrczRcyRczbbUabUabUabUabUabUaczcbUaczSbUdczrbUaczTbUacyXbTZaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHaYKaAUaAVaYMaYLaYOaYNaCUaCUaZraZqaMPaTDaZsaMOaZtbgZaZvaZuaZxaZwaZHbkgaZIbkhalIaSBaSCaSDaSEavqaOmaOnaOoaOpaMyaMyaSFaSGaMybahbajbaiaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaalOaFOaSKaeiazqazraagaagaagaagaagaagaagaagaagaaaaNCaTOczUaRHaTRaRHczWczVaRHaRHaTVaRHczXaTXaNCaaaaagaaaaaaaaaaaaaaaaaaaHOaHOaHOaEOaSWaSXaGSaaaaaaaaaahkaaaaaaaaaaPGaSYaSZaTaaTbaTcaTdaTeaTeaTeaTfaTgbakaTiaTjaTkauZaEYaBnaBnaTlaTmaaAaTnaTnaTnaTnaTnaTnaTnaPMaPMaPMaToaTpaTqaSoaTraPMaTsaTsaPMaTtaTuaTvaTuaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQcyYcyYcyYbQtbQrbQrczkczkczkbTVbQrczeczYcyXchtczLaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagafHahcbalaBRbanbambaqbaobatbarbbmbauaFwaFwbbnaVFaLtbgZbboaWHaXIbbpbbrbbqbbsbltalIatwaTGasSauhavqalIawwavTaTHaTIaTJaTKaTLaTIaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaETaTMaTNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaNCczZaTPaTQaTQaTQaTScAaaTQaTQaTQaTQaTWczZaNCaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFNaagaagaagaagaoTaagaagaagaPGaTYcAbaUabbtaUcaQFaQFaQFaQFaQFaUdaPGaUeaUfaUgbImaAsaBnaBnaTlaUhaaAaUiaUjaUkaUmaUoaUnaVWaUpaUqaUqaUraUsaUtaUuaUvaTsaUwaUxaTsaTtaUyaUzaUAaTtaiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcAcczLczKchtbTZbUabUabUacAdbUabUabUabUaczgcyYchtczLaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCLaCMaAbbbubbFafHbcrbcqbcwbcubcybcxbcAbczbcCbcBaLtbgZbcEbgZbgZbcFbgZbgZbgZbgZalIaugasSasSauhavqalIawwavTaUMaTIaUNaTKaUOaUPaUQaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaEOaURaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaUWaUSaUTaUSaUSaUSaUUaUVaUTaUSaUSaUSaUTaUSaUWaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaDjaJlaDnaaaaaaaaaaaaahkaaaaaaaaaaPGaPGaPGaPGaUXbcGaQFaQFaUZaVaaVbaVcaVdaVeaVfaVgaaAaEXaVhaBnaTlaTmaaAaViaVjaVkaVlaVmaVnaVoaVpaVpaVpaVqaVraVsaVtaVuaVvaVwaVxaVyaVzaVAaVAaVAaVBaiDaiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcAcczLaaaaaaczKchtczecAebUabUabUabUabUabUaczYcyQczLaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbaCObcHafHbcNbcIbdHbcVbdJbdIbdKaCWaZsbdLbdQbdPbdRaJkbdTbdSaBjaBkaBlaBmaAnaugasSasSauhawvalIawwavTaFLaVKaVLaVMaVNaVOaVPaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaEOaVQaGSaaaaaaaaaaVRaVRaVRaVRaVRaaaaagaaaaUWaVSaVSaVSaVSaVScAgcAfaVSaVSaVSaVSaVScAhbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaEbaWbaHSaWcaWdaaaaaaaaaahkaaaaaaaaaaWeaWfaWgaWhaWiaRTaQFaWjaWkaWlaWmaWnaVdaWoaVfaFRaaAaWpaWqaBnaTlaTmaaAaWraWsaWtaWuaWvaWwaTnaPMaWxaPMaPMaWyaSoaSoaWzaTsaWAaWBaTsaSraUzaUzaUzaSraiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZcyYczLaaaaaaaaaaaaczKbTVcyYczebUacAibUabUacyXbQrczLaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHbdUaEybdVafHatkbeDaFwbeEbeIbeHbeJaFwbeKaVFbeLavMbeNavMavMaMtaCcaCdaCeaCfaAnaugasSavpauhavqalIaWLaWMaWMaWNaWOaWPaWQaUPaWRaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaEOaVQaGSaaaaaaaVRaVRaWSaWTaWUaVRaVRaVRaUWaUWaWVaWWaWXaWYaWVaWZaXaaWVaWVaWVaWVaWVcAjbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaXeaFRaHSaXfaXeaaaaaaaaaahkaaaaaaaaaaPGaXgaWfaWeaQFaQFaXhaXiaXjaXkaXlaXmaVdaWoaXnaXoaaAaXpaWqaXqaXraTmaaAaXsaXtaXuaXvaXwaXxaXyaXzaXzaXAaPMaXBaXCaXDaXEaPMaTsaTsaPMaTtaXFaXGaXHaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKczLaaaaaaaaaaaaaaaaaaaaaczKbTVbQrbQrbQrbQrczLaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHatkbeOaFwaFtaFtbePbeQaFwbeRaRoaxIaxJbeSaxJaxJbeTaDcaDdaDeaDfaAnaugavOavPavQavqaXTaXUaXTaXTaXVaXWaXWaUPaUPaXXaTIaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaVQaGSaaaaVRaVRaXYaXZaYaaXZaXZaYbaVRaYcaYcaYcaYdaYeaYfaYcaYgaZaaYcaYcaYcaYcaYccAkbdiaaaaagaUgaYnaYnaYnaUgaagaagaagaYoaYpaHSaYqaYraagaagaagaoTaagaagaagaYsaYsaYsaYsaYsaYsaYsaYsaYsaYsaYsaYsaVdaYtaYuaYvaaAaYwaYxaIxaTlaYyaaAaYzaTnaTnaYAaYBaXyaTnaXzaXzaYCaPMaPMaWxaPMaPMaPMaaQamBaaaaYDaYEaYFaYEaYGaeNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHahcahcatkbeDaFwaFwaFwbeVaFwaFwaXSaVFaxcbeYbfOavnavnbfPaAnaDXaDYaDZaAnaugavOawuavQaxMaXTaYPaYQaYRaXVaXVaYSaUPaYTaYUaTIaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaAOaDjaVQaDnaAOaVRaYVaYWaYXaYXaYYaYaaXZaVRaYZaYcaYcaYcaYcaYcaYccAlaYjaZAaUWaUWaUWaUWaUWbdiaaaaUgaUgaFRaFRaFRaUgaUgaaaaaaaaaaGTaJlaZbaaaaaaaaaaaaahkaaaaaaaaaaYsaZcaZcaZcaZcaZcaZcaZcaZcaZcaZcaZcaVdaFRaZdaYvaaAaZeaZfaBnaTlaZgaZhaLvaZiaZjaZkaZlaZmaZjcAmaXzaXzaXzaXzaXzaZnaZoaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaagvahcahcatkaucbfQaFwbfVbfSbfYbfVaXSaVFaxcbeYbfOaIoavnbfPaAnaEKaELaEMaAnaugavOaxdavQavqaXTaZyaZzaZzbhpaXVaZBaZCaZDaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaZEaZFaZGbfZbgaaZJaZKaZLaZMaXZaZNaZOaZPaZQaZRaZRaZRaZRaZRaZSaZRaZTaZUbpdbhqcAocAncApbdiaaaaaaaYnaZVaFRaZWaFRaFRaUgaUgaUgaUgaUgaZXaZYaUgaUgaUgaaaahkaaaaaaaaaaYsaZcaYsaYsaYsaYsaYsaYsaYsaYsaYsaZcaVdaFRaZdaYvaaAaZZaLvaBnaTlbaaaddaddbabbacbadaZlaZmbaeaXzaXzbafbafaXzaXzbagaZoaZpaaQamBaaaaaacArcAqcAqcAqcAsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHanXahcatkaucbgbaFwbgdbgcbgXbgVbhbbhaaxIbhOaxJaxJaxJbhPaFAaBjaFBaBjaAnaugasSaxLauhavqaXTbavbawbaxbayaXVaXVaXVaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaEOaVQaHVaHPaHOaHOaVRbazaYabaAbaBbaBbaCbaDbaEbaEbaEbaEbaEbaEbaEbaEbaFbaGbaHaXbcAucAtcAvbdiaaaaaaaYnaFRbaIbaJbaKbaLbaMbaNbaLbaObaPaHSaYvaFRbaQaUgbaRbaSbaTaUgaYnaVdaZcaYsbaUbaVbaWbaXbaYbaZbbabbbbbcbbdbbebbfcAwaaAaWqbbhbbiaTlbaaaddaddbbjaZjcAxaZlbbkaZjaXzaXzbafbafaXzaXzbblaZoaZpaaQamBaaacAycAAcAzcAzcAzcAAcABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaabjVbjVbjVafHafHafHatkaucbhSbhQbhVbhTbhTbhTbjcbjabjfbjebjgbjgbkbbjhbkcbkcbkebkdbkfaxCasSasSauhbbwbbxbbybbzaZzaZzbbAaZzbbBbdiaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaEOaVQaGSaagaaaaaaaVRaVRbbCaXZaYaaXZbbDaYbbaEbbEblqbbGbbHbbIbbJbaEbbKbgnbinbqLcADcACcAEbdiaaaaaaaYnaFRbbLbbMbbNbbNbbNbbNbbObbPbbQbbRbbSbbTbbMbbUbbVbbWbbXbbUbbYaVdaZcaYsbbZbcabbZbcbbccbccbccbcdbccbcebcfbcgbchbciaWqbcjavPbckbaaaddaddbbjbclaZkaZlbcmaZjbcnaXzbafbafaXzaXzbcoaZoaZpaaQamBaaacAFcAHcAGcAGcAGcAJcAIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagbjVblrblsbcsbctbcpbcvbmxbmzbmybmBbmAbmAbmCbmDaLhbnLaLeboIcAKboKboJboLaNAaNAbpfbkfaxCasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaaaaalUaxPaoiaaaaaabcObcPbcPbcPbcObcQaiDaagaaaaaaaaaaVRaVRbcRbcSbcTaVRaVRbaEbcUbpgbcWbcXbcYbcZbdabdbbdcbaHaUWaVdaVdbdibdiaaaaaaaUgaUgaZdaYvaFRaUgaUgaUgbddbdebdfbdebdgbdebdhaUgahLaHWahLaUgaVfaVdaagbdibbZbbZbbZbdjbdkbdlbdmbdnbdobdnbdpbdqcALaaAbdsbcjawubckbdtayqbdubdvbdwbdxbdybdzbdAbdBaXzaXzaXzaXzbdCaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbdEbdEbdEbcpbdFbdFbdFbdGbcpbphbdMbdObdMbdNbnNaudaudbpiaynbpSaxbaudauecANcAOaueaAmaueaueauebhcasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaalUaxPaoiaaabcObcPbcObdXbdYbdZbcObeabcOaagaaaaaaaaaaaaaVRaVRaVRaVRaVRaaabaEbebbqjbedbeebefbegbehbeibejbaHaUWbekaVdaVdaaaaaaaaaaaaaUgaZdaZYaUgaUgaaaaUgaUgaYnaUgaUgaUgaYnaUgaUgaaaahkaaaaYnaVfaVdbelbdibdibdibdibdibdibdibdibdiaagaVdaFRaZdaYvaaAbembcjaxdbckbaaaddbenbeobclbepbeqberaZjbesaXzbafaXzbetbeubeubeubevbeubeubewcAPcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbdEbcpbexbeybezbcpbeAbcpbdFbdFbeBbeCbdMbqxbeMbqybnNbqAbqzbrAbqBbrCbrBaudbrDaJIbrNbrQaJfbsHbrRaueaugasSbttbeWbeXbtCbeZbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaalUaxPaoiaaabcObcObfacAQbfcbfdbfecARbffbcObcOaaaaaaaaaaaaaaaaagaagaaaaaaaaabaEbfgbtDbfibbGbfjbfkbaEbflbfmbfnbfobfpbfqbfrbfrbfrbfrbfrbaMbfsbftaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaYnaVfaVdbelbelbelbelbelbelbelbelbelbelbelaVdaFRaZdaYvaaAaWqbfubfvbfwbfxaAubfybfzbfAbfBbfCbfDaZjbfEaXzbfFbfGaXzaXzaXzaZobfHbfIbfJbfHcAScAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCLaCMaAbbbubbFafHbcrbcqbcwbcubcybcxbcAbczbcCbcBaLtbgZbcEbgZbgZbcFbgZbgZbgZbgZalIaugasSasSauhavqalIawwavTaUMaTIaUNaTKaUOaUPaUQaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaEOaURaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaUWaUSaUTaUSaUSaUSaUUaUVaUTaUSaUSaUSaUTaUSaUWaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaDjaJlaDnaaaaaaaaaaaaahkaaaaaaaaaaPGaPGaPGaPGaUXbcGaQFaQFaUZaVaaVaaNzaVdaVeaVfaVgaaAaEXaVhaBnaTlaTmaaAaViaVjaVkaVlaVmaVnaVoaVpaVpaVpaVqaVraVsaVtaVuaVvaVwaVxaVyaVzaVAaVAaVAaVBaiDaiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcAcczLaaaaaaczKchtczecAebUabUabUabUabUabUaczYcyQczLaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbaCObcHafHbcNbcIbdHbcVbdJbdIbdKaCWaZsbdLbdQbdPbdRaJkbdTbdSaBjaBkaBlaBmaAnaugasSasSauhawvalIawwavTaFLaVKaVLaVMaVNaVOaVPaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaEOaVQaGSaaaaaaaaaaVRaVRaVRaVRaVRaaaaagaaaaUWaVSaVSaVSaVSaVScAgcAfaVSaVSaVSaVSaVScAhbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaEbaWbaHSaWcaWdaaaaaaaaaahkaaaaaaaaaaWeaWfaWgaWhaWiaRTaQFaWjaWkaWlaQFaOiaVdaWoaVfaFRaaAaWpaWqaBnaTlaTmaaAaWraWsaWtaWuaWvaWwaTnaPMaWxaPMaPMaWyaSoaSoaWzaTsaWAaWBaTsaSraUzaUzaUzaSraiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZcyYczLaaaaaaaaaaaaczKbTVcyYczebUacAibUabUacyXbQrczLaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHbdUaEybdVafHatkbeDaFwbeEbeIbeHbeJaFwbeKaVFbeLavMbeNavMavMaMtaCcaCdaCeaCfaAnaugasSavpauhavqalIaWLaWMaWMaWNaWOaWPaWQaUPaWRaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaEOaVQaGSaaaaaaaVRaVRaWSaWTaWUaVRaVRaVRaUWaUWaWVaWWaWXaWYaWVaWZaXaaWVaWVaWVaWVaWVcAjbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaXeaFRaHSaXfaXeaaaaaaaaaahkaaaaaaaaaaPGaXgaWfaWeaQFaQFaXhaXiaXjaXkaPiaQlaVdaWoaXnaXoaaAaXpaWqaXqaXraTmaaAaXsaXtaXuaXvaXwaXxaXyaXzaXzaXAaPMaXBaXCaXDaXEaPMaTsaTsaPMaTtaXFaXGaXHaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKczLaaaaaaaaaaaaaaaaaaaaaczKbTVbQrbQrbQrbQrczLaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHatkbeOaFwaFtaFtbePbeQaFwbeRaRoaxIaxJbeSaxJaxJbeTaDcaDdaDeaDfaAnaugavOavPavQavqaXTaXUaXTaXTaXVaXWaXWaUPaUPaXXaTIaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaVQaGSaaaaVRaVRaXYaXZaYaaXZaXZaYbaVRaYcaYcaYcaYdaYeaYfaYcaYgaZaaYcaYcaYcaYcaYccAkbdiaaaaagaUgaYnaYnaYnaUgaagaagaagaYoaYpaHSaYqaYraagaagaagaoTaagaagaagaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaVdaYtaYuaYvaaAaYwaYxaIxaTlaYyaaAaYzaTnaTnaYAaYBaXyaTnaXzaXzaYCaPMaPMaWxaPMaPMaPMaaQamBaaaaYDaYEaYFaYEaYGaeNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHahcahcatkbeDaFwaFwaFwbeVaFwaFwaXSaVFaxcbeYbfOavnavnbfPaAnaDXaDYaDZaAnaugavOawuavQaxMaXTaYPaYQaYRaXVaXVaYSaUPaYTaYUaTIaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaAOaDjaVQaDnaAOaVRaYVaYWaYXaYXaYYaYaaXZaVRaYZaYcaYcaYcaYcaYcaYccAlaYjaZAaUWaUWaUWaUWaUWbdiaaaaUgaUgaFRaFRaFRaUgaUgaaaaaaaaaaGTaJlaZbaaaaaaaaaaaaahkaaaaaaaaaaVdaagaagaagaagaagaagaagaagaagaagaagaVdaFRaZdaYvaaAaZeaZfaBnaTlaZgaZhaLvaZiaZjaZkaZlaZmaZjcAmaXzaXzaXzaXzaXzaZnaZoaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaagvahcahcatkaucbfQaFwbfVbfSbfYbfVaXSaVFaxcbeYbfOaIoavnbfPaAnaEKaELaEMaAnaugavOaxdavQavqaXTaZyaZzaZzbhpaXVaZBaZCaZDaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaZEaZFaZGbfZbgaaZJaZKaZLaZMaXZaZNaZOaZPaZQaZRaZRaZRaZRaZRaZSaZRaZTaZUbpdbhqcAocAncApbdiaaaaaaaYnaZVaFRaZWaFRaFRaUgaUgaUgaUgaUgaZXaZYaUgaUgaUgaaaahkaaaaaaaaaaVdaagaYsaYsaYsaYsaYsaYsaYsaYsaYsaagaVdaFRaZdaYvaaAaZZaLvaBnaTlbaaaddaddbabbacbadaZlaZmbaeaXzaXzbafbafaXzaXzbagaZoaZpaaQamBaaaaaacArcAqcAqcAqcAsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHanXahcatkaucbgbaFwbgdbgcbgXbgVbhbbhaaxIbhOaxJaxJaxJbhPaFAaBjaFBaBjaAnaugasSaxLauhavqaXTbavbawbaxbayaXVaXVaXVaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaEOaVQaHVaHPaHOaHOaVRbazaYabaAbaBbaBbaCbaDbaEbaEbaEbaEbaEbaEbaEbaEbaFbaGbaHaXbcAucAtcAvbdiaaaaaaaYnaFRbaIbaJbaKbaLbaMbaNbaLbaObaPaHSaYvaFRbaQaUgbaRbaSbaTaUgaYnaVdaagaYsbaUbaVbaWbaXbaYbaZbbabbbbbcbbbbbebbfcAwaaAaWqbbhbbiaTlbaaaddaddbbjaZjcAxaZlbbkaZjaXzaXzbafbafaXzaXzbblaZoaZpaaQamBaaacAycAAcAzcAzcAzcAAcABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaabjVbjVbjVafHafHafHatkaucbhSbhQbhVbhTbhTbhTbjcbjabjfbjebjgbjgbkbbjhbkcbkcbkebkdbkfaxCasSasSauhbbwbbxbbybbzaZzaZzbbAaZzbbBbdiaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaEOaVQaGSaagaaaaaaaVRaVRbbCaXZaYaaXZbbDaYbbaEbbEblqbbGbbHbbIbbJbaEbbKbgnbinbqLcADcACcAEbdiaaaaaaaYnaFRbbLbbMbbNbbNbbNbbNbbObbPbbQbbRbbSbbTbbMbbUbbVbbWbbXbbUbbYaVdaagaYsbbZbcabbZbcbbccbccbccbcdbccbccbcfbcgbchbciaWqbcjavPbckbaaaddaddbbjbclaZkaZlbcmaZjbcnaXzbafbafaXzaXzbcoaZoaZpaaQamBaaacAFcAHcAGcAGcAGcAJcAIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagbjVblrblsbcsbctbcpbcvbmxbmzbmybmBbmAbmAbmCbmDaLhbnLaLeboIcAKboKboJboLaNAaNAbpfbkfaxCasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaaaaalUaxPaoiaaaaaabcObcPbcPbcPbcObcQaiDaagaaaaaaaaaaVRaVRbcRbcSbcTaVRaVRbaEbcUbpgbcWbcXbcYbcZbdabdbbdcbaHaUWaVdaVdbdibdiaaaaaaaUgaUgaZdaYvaFRaUgaUgaUgbddbdebdfbdebdgbdebdhaUgahLaHWahLaUgaVfaVdaagaYsbbZbbZbbZbdjbdkbdlbdmaSIaUKaSIbdpbdqcALaaAbdsbcjawubckbdtayqbdubdvbdwbdxbdybdzbdAbdBaXzaXzaXzaXzbdCaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbdEbdEbdEbcpbdFbdFbdFbdGbcpbphbdMbdObdMbdNbnNaudaudbpiaynbpSaxbaudauecANcAOaueaAmaueaueauebhcasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaalUaxPaoiaaabcObcPbcObdXbdYbdZbcObeabcOaagaaaaaaaaaaaaaVRaVRaVRaVRaVRaaabaEbebbqjbedbeebefbegbehbeibejbaHaUWbekaVdaVdaaaaaaaaaaaaaUgaZdaZYaUgaUgaaaaUgaUgaYnaUgaUgaUgaYnaUgaUgaaaahkaaaaYnaVfaVdaagaYsaYsaYsaYsaYsaYsaYsaYsaYsaagaVdaFRaZdaYvaaAbembcjaxdbckbaaaddbenbeobclbepbeqberaZjbesaXzbafaXzbetbeubeubeubevbeubeubewcAPcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbdEbcpbexbeybezbcpbeAbcpbdFbdFbeBbeCbdMbqxbeMbqybnNbqAbqzbrAbqBbrCbrBaudbrDaJIbrNbrQaJfbsHbrRaueaugasSbttbeWbeXbtCbeZbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaalUaxPaoiaaabcObcObfacAQbfcbfdbfecARbffbcObcOaaaaaaaaaaaaaaaaagaagaaaaaaaaabaEbfgbtDbfibbGbfjbfkbaEbflbfmbfnbfobfpbfqbfrbfrbfrbfrbfrbaMbfsbftaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaYnaVfaVdaagaagaagaagaagaagaagaagaagaagaagaVdaFRaZdaYvaaAaWqbfubfvbfwbfxaAubfybfzbfAbfBbfCbfDaZjbfEaXzbfFbfGaXzaXzaXzaZobfHbfIbfJbfHcAScAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbcpbfKbfLbfKbfMbfLbfKbfLbcpbcpbcpbfNaJEbtIbqxbfWbfXbnNbtJaxDayMaxDbtLbtKaudaXSaxcaKXayPayQayRbtMaueaugasSbgeauhbcJbdWbcMbcLaZzbdWbcMbcLaZzaTwaaaaaaalUaxPaeMaaabcObcObfebgfbfbbfbbggbfbbfbbghbgibcObcOaaaaaaaaaaaaaaaaagaagaaaaaabaEbgjbgkbglbgjbgjbgjbaEbgmbgnbgobgpbgqbbNbbNbbNbbNbbNbgrbbNbgsbgtaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUapLaaaaYnaVfaVdaVdaYnaYnaYnaYnaYnaYnaYnaYnaYnaVdaVdaFRaZdaYvaaAbgubgvbgwbgxbgybgzbgAbgBbgCbgDbgEbgFaZjaXzbgGbgHbgIbgJbgJbgJcATbgLbgMaZpbgNcAMcAUcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbgObgPbgQbgPbgObgQbgPbgQbgObcpbgRatkaucbdObqxbfWbgYbnNbuzaxDayMaxDbtLbvaaxbaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbvcaZzaZzaZzaZzbvgaiDaaaalUaxPaoiaaaaaabcPbhdbfebhebgibhfbfebhgbhhbghbhibhjbcPaaaaaaaaaaaaaaaaaaaagaagaaabaEbhkbfhbhlbhmbhnbhobaEbgmbaGbaHbhrbhrbhrbhrbhrbhrbhrbhrbhsaUeaVfaUgaUgaUgaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaiDbhtbbYaFRaFRaFRaFRaFRaFRaFRaFRbhuaFRbhvbhwaFRaZdbhxaaAaAsaBnaBnaTlbhyayqayqbhzbhAbhBbhCbhDbhEbgJbhFbhGbhHaXzbhIaXzaZobfHbhJbfJbfHcAVcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbdEbhLbfKbhMbhNbgObhMbhNbfLbgObcpbgRatkaucbdObqxbfWbhRbnNbvhaxDayMaxDbtLbvUbwtaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbcLaZzaZzaZzaXTaXTaiDalUaxPaoibcObcObcObcObhYbhZbfebfebfebiabibbfebicbidbiebifbifbigbifbihaaaaaaaaaaagaagbaEbiibecbijbikbilbimbaEbaFbgnbinbiobipbiqbirbisbitbiubhraagaUeaVfaUgbivaUgaUgaUgaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaiDbiwbixbiybiybiybiybiybiybbNbbNbbNbbNbbNbbNbbNbizbiAaaAaAsaBnaBnaTlbiBbiCbabbiDbiEbiFbiGbiHbiIbiJbiKbiLaXzbiMbiNbiNbiNbiObiNbiNbiPcAWcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagbdEbiQbgPbiRbiSbiTbiUbiVbiWbgObcpbcpawpaucbdObqxbjdbhRbnNbwvbwubwCaxDbwDbvaaxbaXSbwIaKXbxSbxSbxSbyGaueaxCasSbjkbjlbjmbjnbjnbjoaZzaZzbbBaXTbzAalUaxPaoibcObcObjpbjqbjrbjsbjsbjtbjubjsbjvbjvbjsbjsbjsbjsbjwbjsbjsbjxbjyaaaaaaaaaaaaaagbaEbjzbfhbhlbimbimbimbaEbgmbaGbaHbhrbjAbjBbjBbjCbitbjDbhraagbjEaVfaUgaUgaUgbjFaUgaUgaaaaaaaaaalUaxPaoibjGbjHbjHbjGbjIbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGaZdbjJaaAaAsaBnaBnaTlbjKcAXbjLbjLbjLbjLbjMbjNbjObjPbjQbjRcAYbjTaXzaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabdEbhLbfKbhMbhNbjWbhMbhNbjXbgObjYbjZawpaucbdObqxbhRbhRbnNaudbzLaxDaxDbqBbzSaynaXSbzVbzUauLauLauLauLaueaxCasSbkiauhbkjaXTbkkbkkbklbkmbcMaXTaaabknaoiaaabcObjpbkobkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkqbkqbkqbkrbksaaaaaaaaaaaaaaabaEbaEbktbkubaEbkvbkwbaEbflbkxbkybkzbkAbkBbkCbkDbitbkEbhraagaUeaVfaUgbkFbkGbkHbkIaUgaUgaaaaaabknaoiaaabjGbkJbkKbkLbkLbkMbkMbkNbkObkPbkPbkPbjGbkQbkRbjGbkQbkRbjGaZdbkSaaAaAsaBnbfubkTbkUbkVbkWbkXbkYbkZblablbblcbldbleblfblgblgblgblgblgblgaaQamBaaacAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUblhbliblhbjVbjVbjVbljbgPbiRbiSblkbllblmblnblobcpblpawpaucbdObqxbhRbhRbFbaudbFkaxDaxDaxDbFlayOaXSbFmavnavnavnavnavnbvbaxCasSbkiauhbGlaXTaXTaXTaXTaXTaXTaiDbluaFUblvbcObcObkrbkpbkpblwblxblyblzblAblBblCblDblEblFblGblwblHblIbkqbkrbjyaaaaaaaaaaaaaaabaEblJblKblLbaEbaEbaEbaEblMbaGbaHblNblNblNblNblNblNblNblNaagbjEaVfaUgbkFaFRaFRaFRblOaYnaaaaaaahkaaaaaabjGblPblQbkLbkLblRblRblRblRblRblRblRbjGblSblTbjGblSblTbjGaZdaYvaaAaDraBnbbhblUblVblWblXblYblYblZbmabmabmbbldbjQbmcbmdbmebmfbjSbmgaZpaaQamBaaacAZcBacBacBacBacBacBbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbmhbmibmhbmjbmkbmlbmmbmnbmobmpbmobmqbmrbmobmsbmtbmubmvbfNbmwbdObqxbhRbhRbGmaudbGnbGIaxDbtKbrBaxbbHwaNAaNAbIraNAaNAaNAbIJaxCasSbmEbeWbmFbmGbmHbmHbmIbmJbjsbmKbmLbmMbmNbmKbjsbmObkpblwbmPbmQbmRbmSbmTbmUbmVbmWbmXbmYbmZbnabnbbncbkqbkrbndbnebnebnebnebnebaEbnfbngbnhbnibnjbnkbaEbgmbaGbaHblNbnlbnmbnnbnnbnnbnoblNaagaUeaVfaUgaUgaUgbnpaUgaUgaUgaaaaaaahkaaaaaabjHbnqblRbkLbnrbjGbjGbnsbnsblRbnsbnsbjGcBcbjGbjGcBdbjGbjGaZdaYvaaAaAsaBnaBnbnvbnwblWcBebmabmacBfbmabmacBgbldbnAbnBbnCbjSbnDbmgbnEaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbmhbmibmhbmjbmkbmlbmmbmnbmobmpbmobmqbmrbmobmsbmtbmubmvbfNbmwbdObqxbhRbhRbGmaudbGnbGIaxDbtKbrBaxbbHwaNAaNAbIraNAaNAaNAbIJaxCasSbmEbeWbmFbmGbmHbmHbmIbmJbjsbmKbmLbmMbmNbmKbjsbmObkpblwbmPbmQbmRbmSaVbbmUbmVbmWbmXbmYbmZbnabnbbncbkqbkrbndbnebnebnebnebnebaEbnfbngbnhbnibnjbnkbaEbgmbaGbaHblNbnlbnmbnnbnnbnnbnoblNaagaUeaVfaUgaUgaUgbnpaUgaUgaUgaaaaaaahkaaaaaabjHbnqblRbkLbnrbjGbjGbnsbnsblRbnsbnsbjGcBcbjGbjGcBdbjGbjGaZdaYvaaAaAsaBnaBnbnvbnwblWcBebmabmacBfbmabmacBgbldbnAbnBbnCbjSbnDbmgbnEaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabnFbnGbmjbmjbnHbmjbmjbnIbjVbjVbjVbjVbjVbjVbjVbcpbnJbnKbcpbcpbfNbIKbdObhRbhRbhRbILaudbJMaBdaBdaBdbJNaudbnObnObnObnObnObnObnObnOayTasSbkiauhavqalIbnPbnPbnQbnRbcObcOahLaHWahLbcObcObkrbkpbnSbmPbnTbnUbnVbkpbnWbnXbnYblwbnZblwboabobbocbkqbodbeaboebofboebogbnebaEbbGbbGbohboibojbokbaEbflbolbfnbombonboobopboqborbosblNaUgaUebotbbNbbNbbNbbNbbNbbYaYnaagaagaoSaagaagbjGboubovbkLbkLbowboxblRblRblRblRblRblRblRboybozblRboAbjGaZdaYvaaAcBhaBnaBnboBboCboDcBibmabmacBjbmabmacBkbldboHbjSbjSbjSblgblgblgblgaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboMboMboMboNboOboPboQboRboSboTboUboVboWboXboYboZbpabpbbfNbpcbdObdObJObdObdOaudaudawrawrawqawraudbpjbpkbplbplbplbpmbpkbnOaugasSbkibpnbpobppbpqbpqbprbpqbpqaaaaaaahkaaaaaabcObpsbkpbptblwblwbnXbpubkpbpvbpwbpxblwbpyblwbpzbpAbpBbkqbpCbpDbpEbpEbpFbpEbpEbaEbpGbpHbpIboibpJbpKbaEbgmbgnbinbpLbpMbpNbpObpPbpQbpRblNbzeaYtbaLbpTbaLbaLbaLbaObpUaUgaaaaaaahkaaaaaabjGbpVbpWbkLbpXbpYbpYbpYbpYbpYbpYbpYbpYbpZbqabpYbpYbqbbqcbqdaYvaaAcBlaBnbqebqfbqgboDcBibmabmacBjbmabmacBmbldbmgbmgbjSbjSblgbuVbtrbtsbuWbuWbxMbqkbqlbqlbqmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboNboNboNbjVbjVbjVbqnbqnbqobqpbqqbqrbqsbqtbqubqvbqwbfNbpcbwBbwBbwBbJQbJPaudauIauIauIauIauIaudbqCbqDbqEbqFbqFbqFbqGbqHbqIbqJbqKaHMaHNbppbumbqMbqNbqObpqaaaalUbqPanuaaabcObqQbqRbqRbqRbqRbqSbqTbqRbpvbqUbqVbqWbqXbqWbqYbqZbrabkqbpCbpDbrbbrcbrdbrebrfbaEbaEbaEbaEbaEbrgbrhbrhbribKXbKWblNbnnbrjbrkbrlbpQbnnblNbrmbrmbrmbrmbrmbrmbrmbrnbrobrpaaaalUbqPanuaaabjGbrqbovbkLbrrbrsbrsbrsbrsbrsbrsbrsbrsbrsbrtbrsbrsbrubrvbrwbdhaaAcBnaBnbrxbrybrzboDcBibmabmacBjbmabmacBmbldblgblgblgblgblgbuVbtrbzqbzrbzrbzqbrEbrFbrGbrHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabjUbqnbrIbrJbrKbqnbjVbrLbrMbKYbrObrPbfNbpcbwBbwBbwBbwBbJPaudauIauIavjauIavkaudbrTbpkbrUbrVbpkbpkbrWbnOaugasSbrXaHMbrYbppbrZbrZbsabrZbpqcBobsbbscbsdbsebcObpsbqRbsfbsgbshbsibsjbqRbskbslbsmbsmbsnbsmbsobsmbspbsqbsrbssbstbsubsvbswbsxbsybszbsAbsBcBpbsDbsEbsFbsGbKZbsIblNbsJbsKbsLbsMbsNbsOblNbsPbsQbsRbsSbsTbsUbsVbsWbsXbrpbsYbsbbscbsdbsebjGbjGbjGbjGbjGbjGbjGblRbkLbsZbtablRblRblRbtbbtcbtdbtebjGbtfbivaaAaAsaBnaBnbtgbthbjLcBibmabmacBjbticBqcBrbldbtlbtmbtnbtobtpbtqbtrbtsbuWbuWbLabtubqlbqlbtvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboMboMboMboNboOboPboQboRboSboTboUboVboWboXboYboZbpabpbbfNbpcbdObdObJObdObdOaudaudawrawrawqawraudbpjbpkbplbplbplbpmbpkbnOaugasSbkibpnbpobppbpqbpqbprbpqbpqaaaaaaahkaaaaaabcObpsbkpbptblwblwbnXbpubkpbpvbpwbpxblwbpyblwbpzbpAbpBbkqbpCbpDbpEbpEbpFbpEbpEbaEbpGbpHbpIboibpJbpKbaEbgmbgnbinbpLbpMbpNbpObpPbpQbpRblNbzeaYtbaLbpTbaLbaLbaLbaObpUaUgaaaaaaahkaaaaaabjGbpVbpWbkLbpXbpYbpYbpYbpYbpYbpYbpYbpYbpZbqabpYbpYbqbbqcbqdaYvaaAcBlaBnbqebqfbqgboDcBibmabmacBjbmabmacBmbldbmgbmgbjSbjSblgbuVbtrbtsbuWbuWbxMaVcaWmaWmaWnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboNboNboNbjVbjVbjVbqnbqnbqobqpbqqbqrbqsbqtbqubqvbqwbfNbpcbwBbwBbwBbJQbJPaudauIauIauIauIauIaudbqCbqDbqEbqFbqFbqFbqGbqHbqIbqJbqKaHMaHNbppbumbqMbqNbqObpqaaaalUbqPanuaaabcObqQbqRbqRbqRbqRbqSaXlbqRbpvbqUbqVbqWbqXbqWbqYbqZbrabkqbpCbpDbrbbrcbrdbrebrfbaEbaEbaEbaEbaEbrgbrhbrhbribKXbKWblNbnnbrjbrkbrlbpQbnnblNbrmbrmbrmbrmbrmbrmbrmbrnbrobrpaaaalUbqPanuaaabjGbrqbovbkLbrrbrsbrsbrsbrsbrsbrsbrsbrsbrsbrtbrsbrsbrubrvbrwbdhaaAcBnaBnbrxbrybrzboDcBibmabmacBjbmabmacBmbldblgblgblgblgblgbuVbtrbzqbzrbzrbzqaXmbbdaZcbceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabjUbqnbrIbrJbrKbqnbjVbrLbrMbKYbrObrPbfNbpcbwBbwBbwBbwBbJPaudauIauIavjauIavkaudbrTbpkbrUbrVbpkbpkbrWbnOaugasSbrXaHMbrYbppbrZbrZbsabrZbpqcBobsbbscbsdbsebcObpsbqRbsfbsgbshbsibsjbqRbskbslbsmbsmbsnbsmbsobsmbspbsqbsrbssbstbsubsvbswbsxbsybszbsAbsBcBpbsDbsEbsFbsGbKZbsIblNbsJbsKbsLbsMbsNbsOblNbsPbsQbsRbsSbsTbsUbsVbsWbsXbrpbsYbsbbscbsdbsebjGbjGbjGbjGbjGbjGbjGblRbkLbsZbtablRblRblRbtbbtcbtdbtebjGbtfbivaaAaAsaBnaBnbtgbthbjLcBibmabmacBjbticBqcBrbldbtlbtmbtnbtobtpbtqbtrbtsbuWbuWbLabdnaWmaWmbdoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbtwbtxbtybtzbjVbtAbtBbgObtBbLcbLbcBsbtGbtGbtHbwBbJPaudauIauIauIauIauIaudbtNbtNbtObtPbtNbtNbtNbnOaugasSbgeaJhaJibppbtQbtRbtSbtTbpqbtUbtVaaQbtWbtXbcObqQbqRbtYbtZbuabubbucbqRbudbuebuebufbugbuhbuibuebujbukbulbGkbunbuobupbuqburbusburbutbuubuvbuwbuxbpEbuybuAbuAblNbuBbuCbnnbnnbnnbuDblNbsQbsQbsQbsQbuEbuFbuFbuGbuHbrpbtUbtVaaQbtWbtXbjGblRbuIbuIblRblRbuJblRbkLbuKbuLbuMbuNbuObjGbjGbjGbjGbjGbtfaFRaaAaAsaBnaBnaTlaTmbjLbuPbuQbuPbuRbuPbuPbuSbuTbuUbuVbLdbLCbLebuVbtrbuWaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbuXbuYbqnbjVbuZbtBbgObLDbLFbLEcBtbvebvfbMAbMBbExaudaudaudaudaudaudaudbvibpkbvjbvkbvlbvmbvnbnOaEaasSbgeaJKbvobppbtQbvpbvqbvrbpqcBucBwcBvcBycBxbcObkrbqRbvxbvybvzbvAbvBbqRblwbvCbvCbvDbvEbvDbvCbvCbvFbkqbvGbpEbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbpEbvTbvVbvVbvWbvXbvYbvZbpQbnnbwablNbsQbwbbwcbwdbwebwfbwgbwhbwibrpcBucBwcBvcBycBxbjGbwjbwkbwlbovblRcBzblRbkLbuKbwnblRblRbwobjGbwpaFRaFRbnpbtfaFRaaAaAsaBnaBnaTlaTmbjLbjLbjLbjLbjLbjLbjLbjLcAXbwqbwrbMCbMUbMTbwsbtrbuWaaQamBaaabwwbwxbwxbwxbrHbwxbwxbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFaaFaaFaaPbjVbjVbjVbwzbjVbiTbwAbOgbOfbPnbOhcBAbwFbwGbwHbxWbwJbwKbwLbwMbwKbwNbwObnObwPbpkbwQbwRbwSbpkbwTbnOaugasSbgeauhavqbppbtQbwUbtQbwVbpqbwWbwXbwYbwZbxabcObkrbqRbxbbxbbxcbxbbxdbqRbnSbvCbvCbxebxfbxgbvCbvCblwbkqbxhbpEbpEbxibpEbpEbpEbxjbxkbxlbpEbxmbvQbxnbpEbuybuAbuAbvWbxobnnbxpbsNbnnbnnblNbsQbsQbsQbsQbxqbxrbxrbxsbxtbrpcBBbwXbwYbwZbxvbjGbwjbxwbxxbovblRcBzblRbkLbuKbxybxzblRbxAbjGbaQaFRbxBaUgbtfaFRaaAbxCaBnaBnaTlbxDbxEbxFbxFbxFbxFbxFbxHbxFbxFbxIbxJbPKbQNbPMbxKbxLbuWbuWbuWbxMbxNbxObxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa From a148f87afb07a3d2a8a70b8ab416e7bd6ad5a79a Mon Sep 17 00:00:00 2001 From: Strathcona Date: Wed, 21 Oct 2015 09:03:55 -0400 Subject: [PATCH 24/25] Area Fix --- _maps/map_files/DiscStation/DiscStation.dmm | 14330 +++++++++--------- 1 file changed, 7163 insertions(+), 7167 deletions(-) diff --git a/_maps/map_files/DiscStation/DiscStation.dmm b/_maps/map_files/DiscStation/DiscStation.dmm index 644623564e0..a2a38c9813b 100644 --- a/_maps/map_files/DiscStation/DiscStation.dmm +++ b/_maps/map_files/DiscStation/DiscStation.dmm @@ -1,6983 +1,6980 @@ "aaa" = (/turf/space,/area/space) -"aab" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_ne"; name = "northeast of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"aac" = (/turf/space,/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aad" = (/obj/structure/grille,/turf/space,/area/space) -"aae" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area/space) -"aaf" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/lattice,/turf/space,/area/space) -"aag" = (/obj/structure/lattice,/turf/space,/area/space) -"aah" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) -"aai" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aaj" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) -"aak" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/auxstarboard) -"aal" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aam" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aan" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aao" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aap" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aaq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aar" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aas" = (/obj/structure/cable,/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) -"aat" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aau" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) -"aav" = (/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) -"aaw" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aax" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aay" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/auxport) -"aaz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aaA" = (/turf/simulated/wall,/area/hallway/primary/starboard) -"aaB" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/turret_protected/ai) -"aaC" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/turret_protected/ai) -"aaD" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/obj/machinery/power/terminal{dir = 8},/obj/machinery/camera/motion{c_tag = "AI Core"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/turret_protected/ai) -"aaE" = (/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/space) -"aaF" = (/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"aaG" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"aaH" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/auxport) -"aaI" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners"; icon_state = "darkpurplecorners"},/obj/machinery/porta_turret{ai = 1; dir = 2},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners"; icon_state = "warninglinecorners"},/area/turret_protected/ai) -"aaJ" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/turret_protected/ai) -"aaK" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"aaL" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"aaM" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"aaN" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/turret_protected/ai) -"aaO" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/obj/machinery/porta_turret{ai = 1; dir = 2},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners (NORTH)"; icon_state = "warninglinecorners"; dir = 1},/area/turret_protected/ai) -"aaP" = (/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/space) -"aaQ" = (/turf/simulated/floor/plating/airless,/area/space) -"aaR" = (/turf/simulated/wall,/area/solar/auxstarboard) -"aaS" = (/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) -"aaT" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars"; dir = 1},/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) -"aaU" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) -"aaV" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) -"aaW" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aaX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aaY" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aaZ" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aba" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"abb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"abc" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"abd" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/turret_protected/ai) -"abe" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abf" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abg" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"abh" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"},/area/shuttle/pod_1) -"abi" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f10"},/area/shuttle/pod_1) -"abj" = (/turf/simulated/wall/r_wall,/area/gateway) -"abk" = (/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"abl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"abm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"abn" = (/turf/simulated/wall,/area/maintenance/auxsolarstarboard) -"abo" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"abp" = (/turf/simulated/wall,/area/maintenance/fsmaint) -"abq" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"abr" = (/turf/simulated/wall,/area/ai_monitored/storage/satellite) -"abs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"abt" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"abu" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abv" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/ai) -"abw" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters"; name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"abx" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) -"aby" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/shuttle/pod_1) -"abz" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"abA" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) -"abB" = (/obj/machinery/gateway{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"abC" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) -"abD" = (/turf/simulated/floor/plasteel/black,/area/gateway) -"abE" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"abF" = (/obj/structure/closet/secure_closet/medical1{pixel_x = 0},/obj/machinery/alarm{dir = 2; icon_state = "alarm0"; pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"abG" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"abH" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"abI" = (/obj/structure/rack,/obj/item/weapon/hatchet,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"abJ" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"abK" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"abL" = (/obj/machinery/power/solar_control{id = "biodome"; name = "Biodome Solar Control"; track = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"abM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"abN" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"abO" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"abP" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abR" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -5},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = -27},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -5},/obj/effect/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 32; pixel_y = -32},/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = -32},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abT" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"abU" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"abV" = (/obj/machinery/atmospherics/components/unary/tank,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"abW" = (/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"abX" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"abY" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"abZ" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/gateway) -"aca" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"acb" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/item/weapon/reagent_containers/syringe/charcoal,/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -1; pixel_y = 2},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acc" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"ace" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acf" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"acg" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/camera{c_tag = "MiniSat Electrical"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"ach" = (/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Fore Starboard Solar Control"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"aci" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"acj" = (/obj/structure/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ack" = (/obj/structure/rack,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"acl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acm" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acn" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"aco" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod1"; name = "escape pod 1"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"acp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"acq" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"acr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"acs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"act" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/machinery/camera{c_tag = "MiniSat Atmospherics"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acu" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 1},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acv" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acw" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acx" = (/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) -"acy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"acz" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f5"},/area/shuttle/pod_1) -"acA" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f9"},/area/shuttle/pod_1) -"acB" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Fore Starboard Solars"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"acC" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) -"acD" = (/obj/machinery/gateway,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"acE" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) -"acF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel/black,/area/gateway) -"acG" = (/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/structure/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acJ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Gateway Storage"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"acK" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"acL" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/obj/machinery/camera{c_tag = "AI Chamber 1"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/turret_protected/ai) -"acM" = (/obj/machinery/power/smes,/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"acN" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/turretid{name = "AI Chamber Access Turret Control"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acO" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"acP" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"acQ" = (/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acR" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acS" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) -"acT" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"acU" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"acV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"acW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"acX" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/turret_protected/ai) -"acY" = (/obj/structure/rack,/obj/item/clothing/head/welding,/obj/item/weapon/wrench,/obj/item/weapon/crowbar/red,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"acZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"ada" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adc" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"add" = (/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"ade" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"adf" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/black,/area/gateway) -"adg" = (/obj/structure/closet/l3closet/scientist,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adj" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Gateway APC"; pixel_x = 28; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adk" = (/obj/structure/transit_tube/station/reverse,/obj/structure/transit_tube_pod{tag = "icon-pod (WEST)"; icon_state = "pod"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"adl" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"adm" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adn" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ado" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adr" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ads" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adt" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adu" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "MiniSat Aux APC"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"adw" = (/turf/simulated/wall/r_wall,/area/ai_monitored/storage/satellite) -"adx" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/obj/machinery/light,/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners (WEST)"; icon_state = "warninglinecorners"; dir = 8},/area/turret_protected/ai) -"ady" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/turret_protected/ai) -"adz" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"adA" = (/obj/machinery/hologram/holopad,/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"adB" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) -"adC" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/obj/machinery/light,/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners (EAST)"; icon_state = "warninglinecorners"; dir = 4},/area/turret_protected/ai) -"adD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) -"adG" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"adH" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"adI" = (/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"adJ" = (/obj/structure/sign/pods{pixel_y = 32},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"adK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Gateway"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/gateway) -"adL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/gateway) -"adM" = (/obj/machinery/door/window{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) -"adP" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adQ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"adR" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adT" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adV" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adW" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/landmark/costume,/obj/effect/landmark/costume,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"adX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/ai_monitored/storage/satellite) -"adY" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) -"adZ" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aea" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aeb" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/button/door{id = "AIante"; name = "MiniSat Antechamber Turret Shutter Control"; pixel_x = 25; pixel_y = -6; req_access_txt = "17;65"},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai) -"aec" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aed" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aee" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) -"aef" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/turf/space,/area/space) -"aeg" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/space,/area/space) -"aeh" = (/obj/structure/transit_tube,/turf/space,/area/space) -"aei" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/simulated/floor/plating/airless,/area/space) -"aej" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless,/area/space) -"aek" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"ael" = (/obj/structure/transit_tube,/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) -"aem" = (/obj/structure/transit_tube,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aen" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"aeo" = (/obj/structure/transit_tube{dir = 8; icon_state = "Block"; tag = "icon-Block (NORTH)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aep" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aeq" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/black,/area/gateway) -"aer" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/gateway) -"aes" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/gateway) -"aet" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aeu" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aev" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aew" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aex" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aey" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aez" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"aeA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aeB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aeC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aeD" = (/obj/structure/lattice,/turf/space,/area/maintenance/fsmaint) -"aeE" = (/turf/space,/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"aeG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"aeH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"aeI" = (/obj/machinery/door/firedoor,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "AI Chamber"; req_access_txt = "16"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"aeJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"aeK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"aeL" = (/obj/structure/transit_tube{tag = "icon-S-NE"; icon_state = "S-NE"},/turf/space,/area/space) -"aeM" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/space,/area/space) -"aeN" = (/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) -"aeO" = (/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) -"aeP" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) -"aeQ" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) -"aeR" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) -"aeS" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) -"aeT" = (/obj/machinery/camera/autoname{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aeU" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "gateshutter"; name = "Gateway Access Shutter"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/gateway) -"aeV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aeW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aeX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"aeY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aeZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"afa" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"afb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"afc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"afd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"afe" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aff" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afg" = (/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afi" = (/obj/machinery/door/airlock/maintenance_hatch{name = "turret maintenance hatch"; req_access_txt = "65"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) -"afj" = (/obj/machinery/door/poddoor/shutters{id = "AIante"; name = "Minisat Antechamber Turret Shutter"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "MiniSat Ante Turrets"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/turret_protected/ai) -"afl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/turret_protected/ai) -"afm" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/ai) -"afn" = (/obj/machinery/door/poddoor{id = "mixvent2"; name = "Mixer Room Vent"},/turf/simulated/floor/engine,/area/toxins/mixing) -"afo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afq" = (/obj/structure/transit_tube{tag = "icon-N-S"; icon_state = "N-S"},/turf/space,/area/space) -"afr" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless,/area/space) -"afs" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/plating/airless,/area/space) -"aft" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless,/area/space) -"afu" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"afv" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 0; tag = "icon-direction_med"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afw" = (/turf/simulated/floor/plasteel{tag = "icon-darkgreen (NORTHWEST)"; icon_state = "darkgreen"; dir = 9},/area/hallway/primary/starboard) -"afx" = (/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = 0; pixel_y = 26; req_access_txt = "19"},/turf/simulated/floor/plasteel/black,/area/gateway) -"afy" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"afA" = (/obj/structure/closet,/obj/item/device/assembly/prox_sensor{pixel_x = 2; pixel_y = -2},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"afB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afC" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"afD" = (/obj/structure/window,/obj/item/target,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"afE" = (/obj/structure/window,/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/toxins/test_area) -"afF" = (/obj/structure/window,/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/toxins/test_area) -"afG" = (/obj/item/stack/rods,/turf/space,/area/space) -"afH" = (/turf/simulated/wall,/area/maintenance/fpmaint) -"afI" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/turret_protected/ai) -"afK" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"afL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/turret_protected/ai) -"afM" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"afN" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/ai_monitored/storage/satellite) -"afO" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) -"afP" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) -"afQ" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/turf/simulated/floor/plating/airless,/area/space) -"afR" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless,/area/space) -"afS" = (/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"afT" = (/obj/structure/transit_tube/station{dir = 4; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afU" = (/turf/simulated/floor/plasteel{tag = "icon-darkgreen (WEST)"; icon_state = "darkgreen"; dir = 8},/area/hallway/primary/starboard) -"afV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"afZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aga" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"agb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"agc" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"agd" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"age" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"agf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agg" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Toxins Mixing"},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) -"agk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agl" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "waste_in"; pixel_y = 1},/turf/simulated/floor/engine,/area/toxins/mixing) -"agm" = (/turf/simulated/floor/engine,/area/toxins/mixing) -"agn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"ago" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"agp" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"agq" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/device/radio,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"agr" = (/obj/structure/bed/stool,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"ags" = (/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"agt" = (/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/test_area) -"agu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"agv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"agw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"agx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/turret_protected/ai) -"agy" = (/obj/machinery/light/small,/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/ai) -"agz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/turret_protected/ai) -"agA" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) -"agB" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/simulated/floor/plating/airless,/area/space) -"agC" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) -"agD" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"agE" = (/obj/structure/transit_tube{icon_state = "N-SW"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"agF" = (/turf/simulated/floor/plasteel{tag = "icon-darkgreen (SOUTHWEST)"; icon_state = "darkgreen"; dir = 10},/area/hallway/primary/starboard) -"agG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"agH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"agI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"agJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"agK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"agL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"agM" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agO" = (/obj/machinery/atmospherics/components/trinary/mixer,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"agQ" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/mixing) -"agR" = (/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/toxins/mixing) -"agS" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine,/area/toxins/mixing) -"agT" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"agU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"agV" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"agW" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"agX" = (/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"agY" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"agZ" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"aha" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/space,/area/solar/auxport) -"ahb" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/auxport) -"ahc" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahd" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahf" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"ahg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/ai_monitored/storage/satellite) -"ahh" = (/turf/simulated/wall,/area/turret_protected/aisat_interior) -"ahi" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber"; req_one_access_txt = "65"},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"ahj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber"; req_one_access_txt = "65"},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"ahk" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/space,/area/space) -"ahl" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) -"ahm" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) -"ahn" = (/obj/structure/transit_tube{icon_state = "W-NE"},/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"aho" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ahp" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ahq" = (/obj/machinery/computer/shuttle/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ahr" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ahs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aht" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/darkpurple/corner,/area/hallway/primary/starboard) -"ahu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ahv" = (/turf/simulated/wall/r_wall,/area/toxins/server) -"ahw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ahx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ahy" = (/obj/machinery/atmospherics/components/binary/volume_pump{tag = "icon-volpump_map (WEST)"; icon_state = "volpump_map"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ahz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plating,/area/toxins/mixing) -"ahA" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) -"ahB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "mixing vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine,/area/toxins/mixing) -"ahC" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ahD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"ahE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ahF" = (/turf/simulated/wall,/area/maintenance/auxsolarport) -"ahG" = (/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Fore Port Solar Control"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"ahH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"ahI" = (/obj/structure/rack,/obj/item/weapon/electronics/airlock{pixel_x = -3; pixel_y = -3},/obj/item/weapon/electronics/airlock,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahJ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahK" = (/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahL" = (/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) -"ahM" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahO" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{cell_type = 10000; dir = 1; name = "AI Antechamber APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable/orange,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"ahP" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) -"ahQ" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/turret_protected/aisat_interior) -"ahR" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"ahS" = (/obj/machinery/computer/message_monitor,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"ahT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"ahU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/button/door{id = "AIante"; name = "MiniSat Antechamber Turret Shutter Control"; pixel_x = 0; pixel_y = 25; req_access_txt = "17;65"},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"ahV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"ahW" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"ahX" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/turret_protected/aisat_interior) -"ahY" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/sign/directions/security,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ahZ" = (/turf/simulated/floor/plasteel{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/hallway/primary/starboard) -"aia" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aib" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aic" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"aid" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 140; name = "server vent"; on = 1; pressure_checks = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"aie" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/server) -"aif" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/camera{c_tag = "Research Server"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"aig" = (/obj/machinery/power/apc{dir = 1; name = "Server Room APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"aih" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{current_temperature = 80; dir = 2; on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"aii" = (/turf/simulated/wall,/area/toxins/server) -"aij" = (/obj/structure/rack,/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/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"aik" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ail" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"aim" = (/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ain" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/hallway/primary/starboard) -"aio" = (/turf/simulated/wall/r_wall,/area/toxins/mixing) -"aip" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/transfer_valve,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aiq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"air" = (/obj/structure/closet/firecloset,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ais" = (/obj/structure/closet/emcloset,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ait" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aiu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aiv" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiw" = (/obj/machinery/power/smes,/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"aix" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"aiy" = (/obj/machinery/power/solar_control{id = "foreport"; name = "Fore Port Solar Control"; track = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"aiz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiD" = (/turf/simulated/wall,/area/space) -"aiE" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiF" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/turret_protected/aisat_interior) -"aiH" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) -"aiI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/ai_monitored/storage/satellite) -"aiJ" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Lobby West"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/turret_protected/aisat_interior) -"aiK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners"; icon_state = "darkpurplecorners"},/area/turret_protected/aisat_interior) -"aiL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) -"aiM" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/turret_protected/aisat_interior) -"aiN" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"aiO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"aiP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"aiQ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Lobby East"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/turret_protected/aisat_interior) -"aiR" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) -"aiS" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) -"aiT" = (/turf/simulated/floor/plasteel{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/hallway/primary/starboard) -"aiU" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aiV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aiW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aiX" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aiY" = (/obj/machinery/alarm/server{dir = 4; pixel_x = -22; pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"aiZ" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"aja" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Room"; req_access_txt = "30"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"ajb" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"ajc" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"ajd" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"aje" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{current_temperature = 80; dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ajf" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ajg" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ajh" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"aji" = (/turf/simulated/wall/r_wall,/area/toxins/lab) -"ajj" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 5},/area/toxins/test_area) -"ajk" = (/obj/machinery/light{dir = 1},/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ajl" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ajm" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ajn" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkpurple/side,/area/hallway/primary/starboard) -"ajp" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajq" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/effect/decal/cleanable/cobweb,/obj/item/stack/rods,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint) -"ajs" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajt" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard,/obj/effect/decal/cleanable/blood/old,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aju" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajv" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/turret_protected/aisat_interior) -"ajx" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplefull"; icon_state = "darkpurplefull"},/area/turret_protected/aisat_interior) -"ajy" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/turret_protected/aisat_interior) -"ajz" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/turret_protected/aisat_interior) -"ajA" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/turret_protected/aisat_interior) -"ajB" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/aisat_interior) -"ajC" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/turret_protected/aisat_interior) -"ajD" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"ajE" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"ajF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) -"ajG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"ajH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/turret_protected/aisat_interior) -"ajI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/turret_protected/aisat_interior) -"ajJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-darkpurplefull"; icon_state = "darkpurplefull"},/area/turret_protected/aisat_interior) -"ajK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/turret_protected/aisat_interior) -"ajL" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"ajM" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plating/airless,/area/space) -"ajN" = (/turf/simulated/floor/plasteel{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/hallway/primary/starboard) -"ajO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ajP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/flora/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ajQ" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ajR" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"ajS" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"ajT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; name = "server vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"ajU" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/server) -"ajV" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"ajW" = (/obj/machinery/computer/rdservercontrol,/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"ajX" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"ajY" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"ajZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"aka" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akb" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"akc" = (/obj/machinery/camera{c_tag = "Toxins North"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"akd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/mixing) -"ake" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = 24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/mixing) -"akf" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "mix to port"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing) -"akg" = (/obj/structure/sign/fire{pixel_y = 32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing) -"akh" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "mixing vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"aki" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine,/area/toxins/lab) -"akj" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akk" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/hallway/primary/starboard) -"akm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akn" = (/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ako" = (/obj/item/clothing/suit/fire/atmos,/obj/item/stack/rods,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akp" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/turret_protected/aisat_interior) -"akq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/turret_protected/aisat_interior) -"akr" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/turret_protected/aisat_interior) -"aks" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"akt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/turret_protected/aisat_interior) -"aku" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"akv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/transit_tube{dir = 4; icon_state = "Block"; tag = "icon-Block (NORTH)"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"akw" = (/obj/structure/transit_tube/station/reverse,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"akx" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"aky" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners"; icon_state = "darkpurplecorners"},/area/turret_protected/aisat_interior) -"akz" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/turret_protected/aisat_interior) -"akA" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/obj/structure/lattice,/turf/space,/area/space) -"akB" = (/obj/structure/transit_tube{icon_state = "N-SW"},/obj/structure/lattice,/turf/space,/area/space) -"akC" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/lattice,/turf/space,/area/space) -"akD" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/simulated/floor/plating/airless,/area/space) -"akE" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"akF" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"akG" = (/turf/simulated/wall/r_wall,/area/toxins/storage) -"akH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access = null; req_access_txt = "30"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"akI" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Toxins Mixing APC"; pixel_x = -25},/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akL" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akN" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akO" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"akP" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"akQ" = (/turf/simulated/floor/plasteel,/area/toxins/lab) -"akR" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/mixing) -"akS" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/mixing) -"akT" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2; frequency = 1449; id = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/toxins/mixing) -"akU" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/turf/simulated/floor/engine,/area/toxins/mixing) -"akV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint) -"akX" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/hallway/primary/starboard) -"ala" = (/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint) -"alb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/turret_protected/aisat_interior) -"alc" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) -"ald" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) -"ale" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/machinery/button/door{id = "teledoor"; name = "AI Satellite Teleport Shutters Control"; pixel_x = 0; pixel_y = -25; req_access_txt = "17;65"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) -"alf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) -"alg" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) -"alh" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/turret_protected/aisat_interior) -"ali" = (/obj/structure/transit_tube,/turf/simulated/wall,/area/turret_protected/aisat_interior) -"alj" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) -"alk" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/space,/area/space) -"all" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"alm" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/floor/plating/airless,/area/space) -"aln" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"alo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"alp" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) -"alq" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) -"alr" = (/turf/simulated/wall,/area/toxins/storage) -"als" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/toxins/lab) -"alt" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"alu" = (/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) -"alv" = (/turf/simulated/wall,/area/toxins/mixing) -"alw" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"alx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/toxins/mixing) -"aly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/toxins/mixing) -"alz" = (/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"alA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/mixing) -"alB" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"alC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/mixing) -"alD" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "port to mix"},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/mixing) -"alE" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = -24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing) -"alF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/fsmaint) -"alG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"alH" = (/obj/effect/decal/cleanable/oil/streak,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"alI" = (/turf/simulated/wall,/area/hallway/primary/port) -"alJ" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"alK" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"alL" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"alM" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"alN" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) -"alO" = (/obj/structure/lattice/catwalk,/turf/space,/area/space) -"alP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"alQ" = (/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) -"alR" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) -"alS" = (/obj/machinery/door/airlock/hatch{name = "Teleporter Room"; req_access_txt = "17;65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"alT" = (/obj/machinery/door/poddoor/shutters{id = "teledoor"; name = "AI Satellite Teleport Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"alU" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/space,/area/space) -"alV" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"alW" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = 0; tag = "icon-direction_bridge (EAST)"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"alX" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/hallway/primary/starboard) -"alY" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"alZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"ama" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amc" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"amd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/toxins/storage) -"ame" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"amf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"amg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"; tag = "icon-whitepurplecorner (WEST)"},/area/toxins/lab) -"amh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"ami" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"amj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"amk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"aml" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"amm" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) -"amn" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"amo" = (/turf/simulated/wall,/area/toxins/lab) -"amp" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"amq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/toxins/mixing) -"amr" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ams" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"amt" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"amu" = (/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"amv" = (/obj/structure/sign/pods{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/hallway/primary/port) -"amw" = (/obj/structure/transit_tube{icon_state = "S-NE"},/obj/structure/sign/directions/science,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"amx" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"amy" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/simulated/floor/plating/airless,/area/space) -"amz" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"amA" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/turf/space,/area/space) -"amB" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"amC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"amD" = (/obj/machinery/camera{c_tag = "MiniSat Teleporter"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"amE" = (/obj/machinery/button/door{id = "teledoor"; name = "AI Satellite Teleport Shutters Control"; pixel_x = 0; pixel_y = 25; req_access_txt = "17;65"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"amF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) -"amG" = (/obj/structure/transit_tube{tag = "icon-N-S"; icon_state = "N-S"},/obj/structure/lattice,/turf/space,/area/space) -"amH" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) -"amI" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/lattice,/turf/space,/area/space) -"amJ" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/space,/area/space) -"amK" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/obj/structure/lattice,/turf/space,/area/space) -"amL" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"amM" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/hallway/primary/starboard) -"amN" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"amO" = (/obj/machinery/power/apc{dir = 8; name = "Toxins Storage APC"; pixel_x = -25},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 4; network = list("SS13","RD")},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/mob/living/simple_animal/mouse,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amT" = (/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"amU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"amV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"amW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"amX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"amY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"amZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ana" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"anb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/lab) -"anc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/mixing) -"and" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ane" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ang" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anh" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ani" = (/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_y = 24},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) -"anj" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/toxins/test_area) -"ank" = (/obj/machinery/doppler_array{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) -"anl" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"anm" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/hallway/primary/port) -"ann" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"ano" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"anp" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"anq" = (/obj/structure/transit_tube{tag = "icon-E-SW-NW"; icon_state = "E-SW-NW"},/turf/space,/area/space) -"anr" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"ans" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/space,/area/space) -"ant" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/space,/area/space) -"anu" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) -"anv" = (/obj/machinery/light/small{dir = 8},/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) -"anw" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) -"anx" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) -"any" = (/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) -"anz" = (/obj/machinery/light/small{dir = 4},/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) -"anA" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) -"anB" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"anC" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/hallway/primary/starboard) -"anD" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) -"anE" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) -"anF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) -"anG" = (/obj/machinery/computer/area_atmos,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"anH" = (/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) -"anI" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) -"anJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/toxins/lab) -"anK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"anL" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anM" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anO" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"anP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anQ" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/toxins/test_area) -"anR" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 8; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/test_area) -"anS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/mixing) -"anT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anV" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_x = 30; pixel_y = 0},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"anW" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning,/area/toxins/test_area) -"anX" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"anY" = (/turf/simulated/wall,/area/maintenance/electrical) -"anZ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aoa" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aob" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aoc" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/port) -"aod" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aoe" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/hallway/primary/port) -"aof" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aog" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aoh" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"aoi" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/space,/area/space) -"aoj" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/space,/area/space) -"aok" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"aol" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/aisat_interior) -"aom" = (/obj/machinery/teleport/station,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/aisat_interior) -"aon" = (/obj/machinery/teleport/hub,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/aisat_interior) -"aoo" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aop" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aoq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) -"aor" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"aos" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"aot" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aou" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"aov" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/toxins/test_area) -"aow" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/toxins/test_area) -"aox" = (/obj/item/device/flashlight/lamp,/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"aoy" = (/obj/structure/bed/chair,/obj/item/target/syndicate,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"aoz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) -"aoA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aoB" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aoC" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/camera{c_tag = "Toxins Lab West"; dir = 8; network = list("SS13","RD"); pixel_y = 0},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aoD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aoE" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/electrical) -"aoF" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/maintenance/electrical) -"aoG" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/bluegrid,/area/maintenance/electrical) -"aoH" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aoI" = (/obj/structure/bed/stool,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aoJ" = (/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/hallway/primary/starboard) -"aoK" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aoL" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aoM" = (/obj/machinery/power/apc{dir = 8; name = "Port Primary Hall APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aoN" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aoO" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aoP" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aoQ" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/plating/airless,/area/space) -"aoR" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"aoS" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/turf/space,/area/space) -"aoT" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) -"aoU" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-l"; icon_state = "stairs-l"},/area/hallway/primary/starboard) -"aoV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-stairs-m"; icon_state = "stairs-m"},/area/hallway/primary/starboard) -"aoW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-r"; icon_state = "stairs-r"},/area/hallway/primary/starboard) -"aoX" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aoY" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aoZ" = (/obj/structure/table,/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/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Research Lab"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apa" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apb" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-07"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-07"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apd" = (/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"ape" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"apg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/lab) -"aph" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) -"api" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apj" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) -"apk" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/turf/simulated/floor/plating,/area/toxins/test_area) -"apl" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"apm" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"apn" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 0; pixel_y = 3},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"apo" = (/obj/structure/closet,/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"app" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/toxins/test_area) -"apq" = (/obj/item/weapon/reagent_containers/food/snacks/sugarcookie{pixel_x = 8},/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"apr" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"aps" = (/turf/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/toxins/test_area) -"apt" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"apu" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"apv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"apw" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"apx" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) -"apy" = (/turf/simulated/floor/plating,/area/maintenance/electrical) -"apz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint) -"apA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"apB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"apC" = (/obj/structure/table,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint) -"apD" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint) -"apE" = (/turf/simulated/wall,/area/storage/tools) -"apF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/storage/tools) -"apG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"apH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"apI" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"apJ" = (/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/space) -"apK" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint) -"apL" = (/obj/structure/transit_tube{icon_state = "N-SW"},/turf/space,/area/space) -"apM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) -"apN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) -"apO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) -"apP" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) -"apQ" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/device/flashlight,/obj/structure/closet/crate,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Shield Storage"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) -"apR" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/crowbar,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) -"apS" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apU" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/toxins/lab) -"apV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) -"apW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/toxins/lab) -"apX" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"apY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"apZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqa" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqb" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqd" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqe" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"aqf" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Bomb Test Site"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"aqg" = (/obj/item/weapon/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqh" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqi" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqj" = (/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqk" = (/obj/machinery/recharge_station,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aql" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"aqm" = (/obj/machinery/power/port_gen/pacman,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"aqn" = (/obj/machinery/power/apc{dir = 1; name = "Electrical Maintenance APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"aqo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"aqp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"aqq" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aqr" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint) -"aqs" = (/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aqt" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint) -"aqu" = (/obj/machinery/door/window{name = "Cockpit"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aqv" = (/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/storage/tools) -"aqw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/storage/tools) -"aqx" = (/obj/structure/closet/toolcloset,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/storage/tools) -"aqy" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/storage/tools) -"aqz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aqA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) -"aqB" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/space,/area/space) -"aqC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aqD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aqE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"aqF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/lab) -"aqG" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/lab) -"aqH" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) -"aqI" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) -"aqJ" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) -"aqK" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"aqL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqM" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aqN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqO" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"aqQ" = (/turf/simulated/wall/r_wall,/area/toxins/misc_lab) -"aqR" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aqS" = (/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aqT" = (/obj/machinery/power/apc{dir = 2; name = "Testing Lab APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqW" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqX" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/detective,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqY" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqZ" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/medical_cloning,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ara" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/research_and_development,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"arb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arc" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ard" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"are" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"arf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) -"arg" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) -"arh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"ari" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"arj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ark" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arl" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arm" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/storage/tools) -"aro" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/device/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/storage/tools) -"arp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) -"arq" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/storage/tools) -"arr" = (/turf/simulated/floor/plasteel,/area/storage/tools) -"ars" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Aux Storage"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/storage/tools) -"art" = (/obj/effect/landmark/costume/madscientist,/obj/effect/decal/remains/human,/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint) -"aru" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"arv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Shield Storage"; req_access_txt = "0"; req_one_access_txt = "17;19"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/lab) -"arw" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) -"arx" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/plasteel,/area/toxins/lab) -"ary" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/plasteel,/area/toxins/lab) -"arz" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"; tag = "icon-whitepurplecorner (WEST)"},/area/toxins/lab) -"arA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"arB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/toxins/lab) -"arC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"arD" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"arE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"arF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"arG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"arH" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/science) -"arI" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"arJ" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/alien,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"arK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"arL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arM" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"arN" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/electrical) -"arO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) -"arP" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/electrical) -"arQ" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/device/camera,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"arR" = (/obj/structure/door_assembly/door_assembly_med,/obj/structure/barricade/wooden,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fpmaint) -"arT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint) -"arU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"arY" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"arZ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "yellow"},/area/storage/tools) -"asa" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/storage/tools) -"asb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/storage/tools) -"asc" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/storage/tools) -"asd" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/storage/tools) -"ase" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-l"; icon_state = "stairs-l"},/area/hallway/primary/port) -"asf" = (/turf/simulated/floor/plasteel{tag = "icon-stairs-m"; icon_state = "stairs-m"},/area/hallway/primary/port) -"asg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-r"; icon_state = "stairs-r"},/area/hallway/primary/port) -"ash" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/toxins/lab) -"asi" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) -"asj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) -"ask" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"asl" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"asm" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/hallway/primary/starboard) -"asn" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/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/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aso" = (/obj/machinery/power/apc{dir = 2; name = "Research Lab APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"asp" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"asq" = (/turf/simulated/wall,/area/security/checkpoint/science) -"asr" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/obj/machinery/alarm{pixel_y = 25},/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint/science) -"ass" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/machinery/camera{c_tag = "Research Security Post"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/science) -"ast" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light_switch{pixel_y = 23},/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/science) -"asu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/science) -"asv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"asw" = (/turf/simulated/floor/plasteel,/area/toxins/test_area) -"asx" = (/obj/machinery/camera{c_tag = "Firing Range"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"asy" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"asz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fpmaint) -"asA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint) -"asB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asC" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/electrical) -"asE" = (/obj/machinery/power/terminal,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"asF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"asG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"asH" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"asI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"asJ" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/machinery/iv_drip,/obj/item/weapon/retractor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asK" = (/obj/machinery/sleeper{dir = 2; icon_state = "sleeper-open"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asM" = (/obj/structure/table/glass,/obj/item/weapon/storage/bag/trash,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/port) -"asO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tools) -"asP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) -"asQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/tools) -"asR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"asS" = (/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"asT" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port) -"asU" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"asV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/toxins/lab) -"asW" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/lab) -"asX" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/toxins/lab) -"asY" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{dir = 1; name = "Research and Development Desk"; req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/turf/simulated/floor/plating,/area/toxins/lab) -"asZ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"ata" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"atb" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/science) -"atc" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/turf/simulated/floor/plasteel,/area/security/checkpoint/science) -"atd" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 30; pixel_y = 0},/obj/item/device/radio/off,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/science) -"ate" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"atf" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/target/syndicate,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"atg" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"ath" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"ati" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/robotics_cyborgs,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"atj" = (/obj/structure/bed/stool,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atm" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atn" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ato" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/electrical) -"atp" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"atq" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"atr" = (/obj/item/stack/rods{amount = 50},/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"ats" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"att" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atu" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/obj/item/weapon/kitchen/knife,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atv" = (/obj/structure/table/glass,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atw" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/port) -"atx" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) -"aty" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) -"atz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) -"atA" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) -"atB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port) -"atC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port) -"atD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port) -"atE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) -"atF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"atG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port) -"atH" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/starboard) -"atI" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) -"atJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) -"atK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) -"atL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) -"atM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) -"atN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) -"atO" = (/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) -"atP" = (/turf/simulated/floor/plasteel{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/hallway/primary/starboard) -"atQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Research Entrance"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/toxins/lab) -"atR" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) -"atS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/lab) -"atT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"atU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"atV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Post - Research Division"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science) -"atW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/science) -"atX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint/science) -"atY" = (/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/science) -"atZ" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aua" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aub" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"auc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aud" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) -"aue" = (/turf/simulated/wall,/area/medical/medbay) -"auf" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall,/area/medical/medbay) -"aug" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"auh" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aui" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"auj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"auk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aul" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aum" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aun" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"auo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 12},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aup" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"auq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aur" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/hallway/primary/starboard) -"aus" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aut" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"auu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"auv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"auw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/science) -"aux" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/security/checkpoint/science) -"auy" = (/obj/machinery/computer/secure_data,/obj/machinery/power/apc{dir = 2; name = "Science Security APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) -"auz" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/science) -"auA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/security/checkpoint/science) -"auB" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/misc_lab) -"auC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/misc_lab) -"auD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/test_area) -"auE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/misc_lab) -"auF" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"auG" = (/obj/machinery/camera{c_tag = "Test Area"; dir = 4; network = list("SS13")},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"auH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/hallway/primary/starboard) -"auI" = (/turf/simulated/floor/engine,/area/medical/chemistry) -"auJ" = (/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/hallway/primary/starboard) -"auK" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"auL" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"auM" = (/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/hallway/primary/starboard) -"auN" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port) -"auO" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"auP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"auQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"auR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"auS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"auT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/port) -"auU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/starboard) -"auV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"auW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"auX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) -"auY" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/starboard) -"auZ" = (/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"ava" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"avb" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "purple"},/area/hallway/primary/starboard) -"avc" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) -"avd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitepurple"},/area/toxins/lab) -"ave" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) -"avf" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"avg" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"avh" = (/obj/structure/table,/obj/machinery/button/door{id = "mixvent2"; name = "Gas Mixing Vent Control"; pixel_x = 0; pixel_y = 0; req_access_txt = "55"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/mixing) -"avi" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"},/area/shuttle/pod_2) -"avj" = (/mob/living/carbon/monkey{health = 1000; maxHealth = 1000; name = "Buster"},/turf/simulated/floor/engine,/area/medical/chemistry) -"avk" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{active_power_usage = 0; c_tag = "Chemistry Test Chamber"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/turf/simulated/floor/engine,/area/medical/chemistry) -"avl" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f10"},/area/shuttle/pod_2) -"avm" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"avn" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"avo" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"avp" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"avq" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"avr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/hallway/primary/port) -"avs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/primary/port) -"avt" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/hallway/primary/port) -"avu" = (/turf/simulated/wall,/area/maintenance/fpmaint2) -"avv" = (/obj/structure/girder,/turf/simulated/floor/plating/airless,/area/space) -"avw" = (/turf/simulated/wall,/area/construction) -"avx" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"avy" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"avz" = (/turf/simulated/wall/r_wall,/area/crew_quarters/hor) -"avA" = (/turf/simulated/wall,/area/crew_quarters/hor) -"avB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"avC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) -"avD" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"avE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"avF" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/misc_lab) -"avG" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/misc_lab) -"avH" = (/turf/simulated/wall,/area/toxins/misc_lab) -"avI" = (/obj/item/stack/sheet/cardboard,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"avJ" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"avK" = (/obj/machinery/power/apc{dir = 8; name = "Fore Port APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"avL" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"avM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"avN" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/shuttle/pod_2) -"avO" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"avP" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) -"avQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"avR" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avS" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avT" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avV" = (/obj/structure/rack,/obj/item/weapon/storage/fancy/cigarettes,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avW" = (/obj/structure/rack,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avY" = (/obj/structure/lattice,/turf/space,/area/construction) -"avZ" = (/turf/space,/area/construction) -"awa" = (/turf/simulated/floor/plasteel,/area/construction) -"awb" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel/darkred,/area/hallway/primary/starboard) -"awc" = (/turf/simulated/floor/plasteel/darkred,/area/hallway/primary/starboard) -"awd" = (/obj/structure/rack,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"awe" = (/obj/structure/rack,/obj/item/device/aicard,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"awf" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"awg" = (/obj/machinery/computer/robotics,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"awh" = (/obj/machinery/computer/aifixer,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = -2; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"awi" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/structure/table,/obj/machinery/power/apc{dir = 1; name = "RD Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"awj" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"awk" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"awl" = (/turf/simulated/wall,/area/toxins/explab) -"awm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/explab) -"awn" = (/turf/simulated/wall,/area/toxins/test_area) -"awo" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"awp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fpmaint) -"awq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"awr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "fumehood"; name = "fume hood shutter"},/turf/simulated/floor/plating,/area/medical/chemistry) -"aws" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"awt" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f5"},/area/shuttle/pod_2) -"awu" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) -"awv" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"aww" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awy" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awz" = (/obj/item/clothing/glasses/welding,/turf/simulated/floor/plating/airless,/area/space) -"awA" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/darkred,/area/hallway/primary/starboard) -"awB" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/crew_quarters/hor) -"awC" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/crew_quarters/hor) -"awD" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/crew_quarters/hor) -"awE" = (/obj/machinery/computer/mecha,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"awF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"awG" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f9"},/area/shuttle/pod_2) -"awH" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2"; name = "escape pod 2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"awI" = (/obj/item/clothing/under/color/grey,/obj/effect/decal/remains/human,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"awJ" = (/obj/structure/closet/emcloset{pixel_x = -2},/turf/simulated/floor/plasteel,/area/toxins/explab) -"awK" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/item/device/radio/off,/turf/simulated/floor/plasteel,/area/toxins/explab) -"awL" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 6},/turf/simulated/floor/plasteel,/area/toxins/explab) -"awM" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Experimentor Lab"; dir = 2; network = list("SS13","RD")},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/toxins/explab) -"awN" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/experimentor,/turf/simulated/floor/plasteel,/area/toxins/explab) -"awO" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/engine,/area/toxins/explab) -"awP" = (/turf/simulated/floor/engine,/area/toxins/explab) -"awQ" = (/turf/simulated/wall/r_wall,/area/toxins/explab) -"awR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"awS" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"awT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"awU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"awV" = (/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/button/door{id = "rnd"; name = "Research Shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"awW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"awX" = (/obj/machinery/computer/pandemic,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHWEST)"; icon_state = "whitegreen"; dir = 9},/area/medical/virology) -"awY" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex,/obj/machinery/requests_console{department = "Virology"; name = "Virology RC"; pixel_x = 0; pixel_y = 32},/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) -"awZ" = (/obj/machinery/smartfridge/chemistry/virology,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) -"axa" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Virology APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; dir = 5},/area/medical/virology) -"axb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/chemistry) -"axc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"axd" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) -"axe" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"axf" = (/obj/item/weapon/weldingtool/largetank,/turf/simulated/floor/plating/airless,/area/space) -"axg" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/crew_quarters/hor) -"axh" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{density = 0; dir = 1; pixel_x = 0; pixel_y = 30},/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) -"axi" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/crew_quarters/hor) -"axj" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axm" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/virology) -"axn" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/grass,/area/medical/virology) -"axo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"axp" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"axq" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/explab) -"axs" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/toxins/explab) -"axt" = (/obj/machinery/computer/rdconsole/experiment,/turf/simulated/floor/plasteel,/area/toxins/explab) -"axu" = (/obj/machinery/r_n_d/experimentor,/turf/simulated/floor/engine,/area/toxins/explab) -"axv" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine,/area/toxins/explab) -"axw" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"axx" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"axy" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"axz" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"axA" = (/obj/machinery/light/small{dir = 1},/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/genetics_cloning) -"axB" = (/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/genetics_cloning) -"axC" = (/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/hallway/primary/port) -"axD" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"axE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/genetics_cloning) -"axF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"axG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"axH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"axI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"axJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"axK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"axL" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"axM" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"axN" = (/obj/item/stack/sheet/metal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"axO" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"axP" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/space,/area/space) -"axQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"axR" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/crew_quarters/hor) -"axS" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/crew_quarters/hor) -"axT" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/crew_quarters/hor) -"axU" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axW" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axX" = (/obj/machinery/door/airlock/glass_command{name = "Research Director"; req_access_txt = "30"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"axY" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"axZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aya" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"ayb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/toxins/explab) -"ayc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) -"aye" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/power/apc{dir = 4; name = "Experimentation Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayg" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ayh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"ayi" = (/turf/simulated/floor/grass,/area/medical/virology) -"ayj" = (/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"ayk" = (/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/virology) -"ayl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"aym" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"ayn" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/chemistry) -"ayo" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 13},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"ayq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"ayr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"ays" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/hor) -"ayt" = (/obj/structure/filingcabinet/chestdrawer,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayv" = (/obj/structure/closet/secure_closet/RD,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayw" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayx" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("SS13","RD")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayy" = (/obj/machinery/hologram/holopad,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayz" = (/obj/machinery/light_switch{pixel_y = -23},/obj/structure/flora/kirbyplants/dead,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayA" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayB" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ayC" = (/obj/machinery/light,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayD" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/toxins/explab) -"ayF" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/engine,/area/toxins/explab) -"ayG" = (/obj/machinery/camera{c_tag = "Experimentor Lab Chamber"; dir = 1; network = list("SS13","RD")},/obj/machinery/light,/obj/structure/sign/nosmoking_2{pixel_y = -32},/turf/simulated/floor/engine,/area/toxins/explab) -"ayH" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ayI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ayJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"ayK" = (/turf/simulated/floor/grass,/area/medical/genetics_cloning) -"ayL" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"ayM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"ayN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"ayO" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"ayP" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ayQ" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ayR" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ayS" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ayT" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"ayU" = (/obj/item/stack/rods,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayV" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) -"ayW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/crew_quarters/hor) -"ayX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/hor) -"ayY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/hor) -"ayZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/crew_quarters/hor) -"aza" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"azb" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"azc" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"azd" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aze" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"azf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"azg" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"azh" = (/obj/machinery/door/airlock/glass_research{name = "Monkey Pen"; req_access_txt = "5; 9"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"azi" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"azj" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"azk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"azl" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"azm" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"azn" = (/obj/item/weapon/weldingtool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"azo" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/lattice,/turf/space,/area/space) -"azp" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"azq" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) -"azr" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/lattice,/turf/space,/area/space) -"azs" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/construction) -"azt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/construction) -"azu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) -"azv" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) -"azw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"azx" = (/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access_txt = "32"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"azy" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties{pixel_x = 1; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"azz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"azA" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "purplecorner"},/area/hallway/primary/starboard) -"azB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/toxins/mineral_storeroom) -"azC" = (/turf/simulated/wall/r_wall,/area/toxins/mineral_storeroom) -"azD" = (/obj/machinery/constructable_frame/machine_frame,/obj/item/weapon/wirecutters,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"azE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"azF" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 34},/obj/item/stack/sheet/glass,/obj/item/stack/sheet/metal{amount = 34},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/camera{c_tag = "Research Storage"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"azG" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/power/apc{dir = 8; name = "Mineral Storage APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"azH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/toxins/lab) -"azI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/toxins/lab) -"azJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"azK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/toxins/lab) -"azL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"azM" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azN" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azO" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azP" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azQ" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/weapon/extinguisher,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azR" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azS" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azT" = (/obj/machinery/monkey_recycler,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azU" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azV" = (/obj/machinery/smartfridge/extract,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"azW" = (/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"azX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"azY" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/reagent_containers/glass/bottle/formaldehyde,/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"azZ" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/reagent_containers/glass/bottle/ammonia,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/glass/bottle/diethylamine,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aAa" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aAb" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAc" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAd" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/cardhand,/obj/item/toy/cards/cardhand,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"aAf" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"aAg" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/medical/genetics_cloning) -"aAh" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/medical/genetics_cloning) -"aAi" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/medical/genetics_cloning) -"aAj" = (/obj/machinery/suit_storage_unit/rd,/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/hor) -"aAk" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"aAl" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aAm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/medbay) -"aAn" = (/turf/simulated/wall,/area/security/checkpoint/medical) -"aAo" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) -"aAp" = (/turf/simulated/floor/plating,/area/construction) -"aAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/construction) -"aAr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/construction) -"aAs" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aAt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aAu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aAv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/toxins/mineral_storeroom) -"aAw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Research"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/mineral_storeroom) -"aAx" = (/obj/machinery/door/window/eastleft{name = "Medical Delivery"; req_access_txt = "5"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/mineral_storeroom) -"aAy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aAz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aAA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aAB" = (/obj/machinery/door/airlock/research{name = "Research Division Storage"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aAC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) -"aAD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aAE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aAF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"aAG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aAH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aAI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aAJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aAK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aAL" = (/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aAM" = (/obj/structure/rack,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aAN" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aAO" = (/obj/structure/window/reinforced,/turf/space,/area/space) -"aAP" = (/obj/structure/closet/crate,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAQ" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aAR" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aAS" = (/obj/machinery/door/airlock/maintenance{name = "Chemical Storage"; req_access_txt = "12; 5; 33"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"aAU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAW" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAY" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aAZ" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology) -"aBa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aBb" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBc" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBd" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/chemistry) -"aBe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"aBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBg" = (/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBh" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/machinery/newscaster{dir = 4; pixel_x = 30},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"aBi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aBk" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint/medical) -"aBl" = (/obj/machinery/camera{c_tag = "Security Post - Medbay"; dir = 2; network = list("SS13")},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security Post RC"; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/medical) -"aBm" = (/obj/structure/filingcabinet,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/medical) -"aBn" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aBo" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/starboard) -"aBp" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "purple"},/area/toxins/mineral_storeroom) -"aBq" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aBr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aBs" = (/obj/machinery/constructable_frame/machine_frame,/obj/item/stack/cable_coil,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aBt" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) -"aBu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) -"aBv" = (/obj/machinery/light,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) -"aBw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) -"aBx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"aBy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aBz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aBA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aBB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aBC" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aBD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aBE" = (/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"aBF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aBG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aBH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aBI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"aBJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/maintenance/fsmaint) -"aBK" = (/turf/simulated/wall,/area/maintenance/disposal) -"aBL" = (/obj/machinery/mass_driver{dir = 4; id = "garbagedriver"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aBM" = (/turf/simulated/floor/plating,/area/maintenance/disposal) -"aBN" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aBO" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics_cloning) -"aBP" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) -"aBQ" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aBR" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aBS" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"aBT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aBU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aBV" = (/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/glass,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) -"aBW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aBX" = (/obj/item/weapon/storage/secure/safe{dir = 4; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Virology Break Room"; dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"aBY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBZ" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"aCa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aCb" = (/obj/machinery/computer/scan_consolenew,/obj/machinery/camera{c_tag = "Genetics Lab"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics_cloning) -"aCc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aCd" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/depsec/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) -"aCe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint/medical) -"aCf" = (/obj/machinery/computer/secure_data,/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) -"aCg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aCh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aCi" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aCj" = (/obj/structure/rack,/obj/item/stack/sheet/glass{amount = 50},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aCk" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) -"aCl" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/construction) -"aCm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/construction) -"aCn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) -"aCo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/construction) -"aCp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/construction) -"aCq" = (/obj/machinery/power/apc{dir = 2; name = "Construction Area APC"; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable,/turf/simulated/floor/plasteel,/area/construction) -"aCr" = (/turf/simulated/wall,/area/toxins/mineral_storeroom) -"aCs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/toxins/mineral_storeroom) -"aCt" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"aCu" = (/turf/simulated/wall,/area/toxins/xenobiology) -"aCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/camera{c_tag = "Xenobiology"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCx" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCz" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCA" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCB" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aCC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"aCD" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"aCE" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"aCF" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area/space) -"aCG" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; layer = 2.5},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aCH" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) -"aCI" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) -"aCJ" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) -"aCK" = (/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (NORTH)"; icon_state = "bulb-construct-stage1"; dir = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aCL" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/maintenance/fpmaint) -"aCM" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aCN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aCO" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aCP" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) -"aCQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aCR" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/space) -"aCS" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aCT" = (/obj/structure/table,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aCU" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint) -"aCV" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aCW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/medical/cryo) -"aCX" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/pen/red,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"aCY" = (/obj/machinery/dna_scannernew,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics_cloning) -"aCZ" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) -"aDa" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aDb" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aDc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aDd" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) -"aDe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/checkpoint/medical) -"aDf" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) -"aDg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area/space) -"aDk" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 50; pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDl" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aDm" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) -"aDo" = (/obj/structure/closet/crate,/obj/item/stack/sheet/plasteel{amount = 50},/turf/simulated/floor/plating,/area/construction) -"aDp" = (/obj/structure/closet/crate,/obj/item/stack/rods,/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plating,/area/construction) -"aDq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/construction) -"aDr" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aDs" = (/turf/simulated/wall/r_wall,/area/assembly/robotics) -"aDt" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDu" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDv" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDw" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDx" = (/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/obj/structure/rack{dir = 8; layer = 2.9},/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/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDy" = (/obj/structure/flora/kirbyplants{icon_state = "plant-07"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-07"},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aDA" = (/turf/simulated/wall,/area/assembly/robotics) -"aDB" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter"; network = list("Xeno"); pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aDC" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aDD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aDE" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/toxins/xenobiology) -"aDF" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aDG" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Pens"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aDH" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"aDI" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; layer = 2.5},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; layer = 3; name = "disposal exit vent"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aDJ" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aDK" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aDL" = (/obj/machinery/iv_drip,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aDM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aDN" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aDO" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aDP" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aDQ" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) -"aDR" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/table/glass,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/medical/genetics_cloning) -"aDS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics_cloning) -"aDT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics_cloning) -"aDU" = (/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table/glass,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHEAST)"; icon_state = "whitepurple"; dir = 6},/area/medical/genetics_cloning) -"aDV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aDW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics_cloning) -"aDX" = (/obj/machinery/power/apc{dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) -"aDY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/checkpoint/medical) -"aDZ" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) -"aEa" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"aEb" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"aEc" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aEd" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aEe" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/turf/simulated/floor/plating,/area/construction) -"aEf" = (/obj/machinery/power/apc{dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aEg" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aEh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aEi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aEj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aEk" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aEl" = (/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) -"aEm" = (/obj/machinery/suit_storage_unit/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aEn" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aEo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aEp" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aEq" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/xenobiology) -"aEr" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology) -"aEs" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aEt" = (/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aEu" = (/obj/machinery/conveyor{dir = 6; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aEv" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aEw" = (/obj/machinery/conveyor{dir = 9; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aEx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "o2_in"},/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/space) -"aEy" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aEz" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aEA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; dir = 10},/area/medical/virology) -"aEB" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = -22},/obj/machinery/light_switch{pixel_x = -4; pixel_y = -24},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) -"aEC" = (/obj/structure/closet/wardrobe/virology_white,/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) -"aED" = (/obj/machinery/iv_drip,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; dir = 6},/area/medical/virology) -"aEE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) -"aEF" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aEG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) -"aEH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aEI" = (/turf/simulated/wall/r_wall,/area/medical/cmo) -"aEJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "closed"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aEK" = (/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/checkpoint/medical) -"aEL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/medical) -"aEM" = (/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/medical) -"aEN" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aEO" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"aEP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aEQ" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aER" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aES" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aET" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/obj/structure/lattice/catwalk,/turf/space,/area/space) -"aEU" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 50; pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aEV" = (/obj/effect/landmark{name = "Syndicate-Uplink"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aEW" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aEX" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/starboard) -"aEY" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) -"aEZ" = (/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4; network = list("SS13","RD")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aFa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aFb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aFc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aFe" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aFf" = (/obj/structure/table,/obj/item/device/aicard,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aFg" = (/obj/machinery/door/poddoor{auto_close = 300; id = "smindicate"; name = "outer blast door"},/obj/machinery/button/door{id = "smindicate"; name = "external door control"; pixel_x = -26; pixel_y = 0; req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate"; name = "syndicate infiltrator"; roundstart_move = "syndicate_away"; travelDir = 180; width = 18},/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_nw"; name = "northwest of station"; turf_type = /turf/space; width = 18},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aFh" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aFi" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) -"aFj" = (/obj/structure/table,/obj/item/weapon/c4{pixel_x = 2; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aFk" = (/obj/machinery/door/window{dir = 4; name = "EVA Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aFl" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aFm" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/xenobiology) -"aFn" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/xenobiology) -"aFo" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aFp" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aFq" = (/obj/item/conveyor_switch_construct{tag = "garbage"},/turf/simulated/floor/plating{icon_state = "warnplatecorner"},/area/maintenance/disposal) -"aFr" = (/obj/structure/window/reinforced,/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/disposal) -"aFs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/disposal) -"aFt" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/medical/cryo) -"aFu" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aFv" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (NORTH)"; icon_state = "warnwhitecorner"; dir = 1},/area/medical/genetics_cloning) -"aFw" = (/turf/simulated/wall,/area/medical/cryo) -"aFx" = (/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 2; network = list("SS13")},/obj/structure/table,/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aFy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation C"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aFz" = (/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aFA" = (/obj/structure/sign/examroom,/turf/simulated/wall,/area/security/checkpoint/medical) -"aFB" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/checkpoint/medical) -"aFC" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFD" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen/red,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFE" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/space,/area/space) -"aFF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) -"aFH" = (/obj/structure/window/reinforced,/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"aFI" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFJ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) -"aFK" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFM" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/camera{c_tag = "Port Maintence Bubble"; dir = 8; network = list("MINE")},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aFN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/lattice,/turf/space,/area/space) -"aFO" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/lattice/catwalk,/turf/space,/area/space) -"aFP" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/lattice/catwalk,/turf/space,/area/space) -"aFQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aFR" = (/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aFS" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aFT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/space) -"aFU" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"aFV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) -"aFW" = (/obj/structure/lattice,/obj/structure/window/reinforced,/turf/space,/area/space) -"aFX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/construction) -"aFY" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"aFZ" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/hallway/primary/starboard) -"aGa" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aGb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aGc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aGd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aGe" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/assembly/robotics) -"aGf" = (/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/assembly/robotics) -"aGg" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/assembly/robotics) -"aGh" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "EVA Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aGi" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/virology) -"aGj" = (/obj/machinery/door/window/southleft{dir = 1; name = "Test Chamber"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aGk" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) -"aGl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/xenobiology) -"aGm" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aGn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aGo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aGp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aGq" = (/obj/machinery/power/apc{dir = 8; name = "Disposal APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aGr" = (/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplate"; luminosity = 2},/area/maintenance/disposal) -"aGs" = (/obj/machinery/conveyor{dir = 5; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aGt" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/recycler,/turf/simulated/floor/plating,/area/maintenance/disposal) -"aGu" = (/obj/machinery/conveyor{dir = 10; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aGv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/virology) -"aGw" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) -"aGx" = (/obj/structure/table,/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aGy" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/virology) -"aGz" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/virology) -"aGA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aGB" = (/obj/structure/closet/wardrobe/white,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Cloning Lab APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aGC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aGD" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aGE" = (/mob/living/simple_animal/pet/cat/Runtime,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aGF" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/virology) -"aGG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aGH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port) -"aGI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/port) -"aGJ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/port) -"aGK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGM" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGN" = (/obj/structure/closet/cabinet,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGO" = (/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGP" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGQ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGS" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"aGT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) -"aGU" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGV" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aGW" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"aGX" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aGY" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aGZ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHa" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHb" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHc" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating/airless,/area/space) -"aHe" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/space) -"aHf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating/airless,/area/space) -"aHg" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) -"aHh" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) -"aHi" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/construction) -"aHj" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"aHk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aHl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aHm" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 4; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/simulated/floor/plating,/area/assembly/robotics) -"aHn" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aHo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) -"aHp" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/assembly/robotics) -"aHq" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) -"aHr" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = -3; pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aHs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aHt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/toxins/xenobiology) -"aHu" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aHv" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aHw" = (/obj/item/weapon/shard,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aHx" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/effect/decal/cleanable/blood/old,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aHy" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aHz" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aHA" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aHB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplate"; luminosity = 2},/area/maintenance/disposal) -"aHC" = (/obj/machinery/conveyor{tag = "icon-conveyor-1 (EAST)"; icon_state = "conveyor-1"; dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"aHD" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating,/area/maintenance/disposal) -"aHE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/virology) -"aHF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aHG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) -"aHH" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aHI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aHJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "CM Office APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aHK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aHL" = (/obj/structure/table/glass,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aHM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"aHN" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"aHO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) -"aHP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/lattice,/turf/space,/area/space) -"aHQ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"aHR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/space_heater,/obj/machinery/camera{c_tag = "Starboard Maintence Bubble"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHS" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aHV" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) -"aHW" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) -"aHX" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"aHY" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 14},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aHZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/hallway/primary/starboard) -"aIa" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIc" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/assembly/robotics) -"aId" = (/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIe" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/cable_coil,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIf" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/wrapsortjunction{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aIg" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aIh" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/maintenance/disposal) -"aIi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/disposal) -"aIj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/disposal) -"aIk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aIl" = (/obj/machinery/doorButtons/access_button{dir = 8; idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 26; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "closed"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aIm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aIn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/genetics_cloning) -"aIo" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aIp" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aIq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aIr" = (/obj/machinery/vending/snack,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"aIs" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aIt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aIu" = (/turf/simulated/wall/r_wall,/area/engine/gravity_generator) -"aIv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) -"aIw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) -"aIx" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aIy" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIB" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/assembly/robotics) -"aIC" = (/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/assembly/robotics) -"aID" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/assembly/robotics) -"aIE" = (/mob/living/simple_animal/slime,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aIF" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aIG" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aIH" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aII" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aIJ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = -29},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/structure/table/glass,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aIK" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"aIL" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aIM" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aIN" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aIO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) -"aIP" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aIQ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aIR" = (/obj/structure/table,/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/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) -"aIS" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/assembly/robotics) -"aIT" = (/obj/structure/optable{name = "Robotics Operating Table"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/assembly/robotics) -"aIU" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/assembly/robotics) -"aIV" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 1; network = list("Xeno","RD"); pixel_x = 0},/obj/machinery/light{dir = 2},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aIW" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aIX" = (/obj/structure/girder/displaced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aIY" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aIZ" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aJa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aJb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aJc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aJd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/medical/cmo) -"aJe" = (/obj/machinery/suit_storage_unit/cmo,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/cmo) -"aJf" = (/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aJg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) -"aJh" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"aJi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"aJj" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"aJk" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aJl" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aJm" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) -"aJn" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/gravity_generator) -"aJo" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) -"aJp" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/engine/gravity_generator) -"aJq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aJr" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/hallway/primary/starboard) -"aJs" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aJt" = (/turf/simulated/wall/r_wall,/area/assembly/chargebay) -"aJu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/assembly/chargebay) -"aJv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/assembly/chargebay) -"aJw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aJx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/assembly/chargebay) -"aJy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"aJz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"aJA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"aJB" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aJC" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"aJD" = (/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aJE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aJF" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aJG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aJH" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) -"aJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aJJ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/medbay) -"aJK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"aJL" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/port) -"aJM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aJN" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aJO" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aJP" = (/obj/machinery/computer/message_monitor,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/tcommsat/computer) -"aJQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/tcommsat/computer) -"aJR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aJS" = (/obj/machinery/light,/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 0},/obj/machinery/computer/med_data/laptop,/obj/structure/table/glass,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aJT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aJU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aJV" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) -"aJW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/gravity_generator) -"aJX" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/hallway/primary/starboard) -"aJY" = (/obj/machinery/power/apc{dir = 8; name = "Mech Bay APC"; pixel_x = -25},/obj/structure/cable,/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aJZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKd" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKe" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/item/clothing/head/welding,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKf" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 17},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKg" = (/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aKh" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aKi" = (/obj/structure/disposalpipe/sortjunction{sortType = 4},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKj" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aKk" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aKm" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aKn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/medical/cmo) -"aKo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/cmo) -"aKp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aKq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aKr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aKs" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aKt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aKu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aKv" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aKw" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/computer) -"aKx" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/computer) -"aKy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/computer) -"aKz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/hallway/primary/port) -"aKA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/simulated/floor/plating,/area/medical/cmo) -"aKB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/cmo) -"aKC" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"aKD" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"aKE" = (/obj/machinery/gravity_generator/main/station,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) -"aKF" = (/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer"; req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"aKG" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/hallway/primary/starboard) -"aKH" = (/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKI" = (/obj/machinery/recharge_station,/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/assembly/chargebay) -"aKJ" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aKK" = (/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/assembly/chargebay) -"aKL" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"aKM" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKN" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 23},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKO" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKP" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKQ" = (/obj/item/weapon/weldingtool/largetank,/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aKR" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aKS" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aKT" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aKU" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aKV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aKW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aKX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aKY" = (/obj/item/weapon/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/obj/structure/table/glass,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 23},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aKZ" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aLa" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 6},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aLb" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aLc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aLd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) -"aLe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aLf" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay) -"aLg" = (/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) -"aLh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aLi" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/tcommsat/computer) -"aLj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Telecoms Computers"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/computer) -"aLk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/computer) -"aLl" = (/turf/simulated/wall/r_wall,/area/maintenance/fpmaint2) -"aLm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) -"aLn" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) -"aLo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aLp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aLq" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating/airless,/area/space) -"aLr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) -"aLs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) -"aLt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aLu" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aLv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aLw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Charge Bay"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aLx" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aLy" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aLz" = (/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"aLA" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aLB" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 11},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aLC" = (/obj/structure/disposalpipe/sortjunction{sortType = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aLD" = (/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) -"aLE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aLF" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"aLG" = (/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"aLH" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aLI" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aLJ" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aLK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) -"aLL" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) -"aLM" = (/obj/structure/table/glass,/obj/item/weapon/storage/secure/briefcase,/obj/machinery/camera{c_tag = "CMO's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aLN" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aLO" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/gravity_generator) -"aLP" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aLQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aLR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aLS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aLT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aLU" = (/obj/structure/closet/wardrobe/white/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/obj/item/clothing/suit/toggle/labcoat/emt,/obj/item/clothing/head/soft/emt,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aLW" = (/obj/machinery/status_display,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/tcommsat/computer) -"aLX" = (/obj/machinery/door/airlock/glass_command{name = "Control Room"; req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/tcommsat/computer) -"aLY" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aLZ" = (/obj/machinery/washing_machine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/medbay) -"aMa" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aMb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/darkwarning,/area/tcommsat/computer) -"aMc" = (/obj/machinery/door/airlock/glass_command{name = "Gravity Generator Area"; req_access_txt = "19; 61"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) -"aMd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) -"aMe" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/darkwarning,/area/tcommsat/computer) -"aMf" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aMg" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 7},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aMh" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aMi" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aMj" = (/obj/structure/closet/crate/medical,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aMk" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aMl" = (/turf/simulated/wall/r_wall,/area/tcommsat/server) -"aMm" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/gravity_generator) -"aMn" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) -"aMo" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aMp" = (/obj/structure/table,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aMq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMs" = (/obj/machinery/door/airlock/medical{name = "Cleaning Room"; req_access_txt = "5"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aMu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aMv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aMw" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMx" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMy" = (/turf/simulated/wall/r_wall,/area/tcommsat/lounge) -"aMz" = (/obj/structure/table,/obj/item/device/multitool,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/tcommsat/lounge) -"aMA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/tcommsat/lounge) -"aMB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{pixel_x = 30},/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/lounge) -"aMC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aMD" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Telecoms Server APC"; pixel_x = 28; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/computer) -"aME" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aMF" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aMG" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aMH" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aMI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aMJ" = (/turf/simulated/floor/plating,/area/medical/medbay) -"aMK" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aML" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) -"aMM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) -"aMN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) -"aMO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aMQ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aMR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aMS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) -"aMT" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aMU" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/assembly/chargebay) -"aMV" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = -23},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aMW" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aMX" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aMY" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aMZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNc" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aNd" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aNe" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aNf" = (/obj/structure/table,/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aNg" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint) -"aNh" = (/obj/item/stack/sheet/cardboard,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aNi" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aNj" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aNk" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aNl" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) -"aNm" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aNn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aNo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aNp" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aNq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aNr" = (/obj/machinery/door/window/eastleft{dir = 8; name = "Medical Delivery"; req_access_txt = "5"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/medical/medbay) -"aNs" = (/obj/machinery/camera{c_tag = "Telecoms Server Room North"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners"; icon_state = "darkyellowcorners"},/area/tcommsat/server) -"aNt" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) -"aNu" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) -"aNv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) -"aNw" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/tcommsat/lounge) -"aNx" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow"; icon_state = "darkyellow"},/area/tcommsat/server) -"aNy" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/tcommsat/server) -"aNz" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/research) -"aNA" = (/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aNB" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) -"aNC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) -"aND" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/item/weapon/canvas,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aNE" = (/obj/machinery/door/window{dir = 4; name = "Infirmary"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aNF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/item/weapon/storage/crayons,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aNG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aNH" = (/obj/structure/lattice,/obj/item/stack/sheet/plasteel,/turf/space,/area/space) -"aNI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aNJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"aNK" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"aNL" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning/corner,/area/engine/gravity_generator) -"aNM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) -"aNN" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/tcommsat/server) -"aNO" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aNP" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aNQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aNR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aNS" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/assembly/chargebay) -"aNT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNU" = (/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 22},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aNV" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aNW" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 15},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNY" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNZ" = (/obj/structure/closet,/obj/item/device/flashlight,/obj/item/weapon/extinguisher,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOa" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/maintenance/fsmaint) -"aOc" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOd" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"aOe" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint) -"aOf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aOg" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aOh" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (WEST)"; icon_state = "darkyellow"; dir = 8},/area/tcommsat/server) -"aOi" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/research) -"aOj" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aOk" = (/obj/structure/table,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aOl" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aOm" = (/turf/simulated/wall,/area/tcommsat/lounge) -"aOn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/tcommsat/lounge) -"aOo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/tcommsat/lounge) -"aOp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/tcommsat/lounge) -"aOq" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) -"aOr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) -"aOs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) -"aOt" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable,/turf/simulated/floor/plating,/area/tcommsat/lounge) -"aOu" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) -"aOv" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) -"aOw" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/alarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aOx" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)"; icon_state = "darkblue"; dir = 9},/area/bridge) -"aOy" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"aOz" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) -"aOA" = (/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/canvas,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aOB" = (/obj/item/weapon/canvas/twentythreeXtwentythree,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aOC" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) -"aOD" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aOE" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) -"aOF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) -"aOG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/engine/gravity_generator) -"aOH" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) -"aOI" = (/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) -"aOJ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/hallway/primary/starboard) -"aOK" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) -"aOL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"aOM" = (/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 21},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aON" = (/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOO" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 16},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOQ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOR" = (/obj/item/device/multitool,/obj/item/device/radio,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOS" = (/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOT" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 10; pixel_y = -5},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOU" = (/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOV" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOW" = (/obj/structure/bed/chair{dir = 8},/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOX" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOZ" = (/obj/machinery/door/window/westright{name = "Tool Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aPa" = (/obj/machinery/camera{c_tag = "Starboard Pods"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint) -"aPb" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/girder/displaced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aPc" = (/turf/simulated/wall,/area/medical/genetics_cloning) -"aPd" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aPe" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aPf" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aPg" = (/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aPh" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aPi" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research) -"aPj" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/port) -"aPk" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/port) -"aPl" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) -"aPm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/tcommsat/lounge) -"aPn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/tcommsat/lounge) -"aPo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/lounge) -"aPp" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/obj/machinery/camera{c_tag = "Telecoms Lobby"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) -"aPq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) -"aPr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) -"aPs" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/vending/wallmed{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aPt" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aPu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aPv" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)"; icon_state = "darkblue"; dir = 9},/area/bridge) -"aPw" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"aPx" = (/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) -"aPy" = (/obj/structure/bed/chair{dir = 1; name = "Engineering Station"},/turf/simulated/floor/plasteel/darkpurple,/area/bridge) -"aPz" = (/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) -"aPA" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"aPB" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) -"aPC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/easel,/obj/item/weapon/canvas,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aPD" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aPE" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aPF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aPG" = (/turf/simulated/wall/r_wall,/area/medical/research) -"aPH" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"aPI" = (/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 22},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aPJ" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aPK" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 18},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aPL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/quartermaster/miningdock) -"aPM" = (/turf/simulated/wall,/area/quartermaster/miningdock) -"aPN" = (/obj/structure/table,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aPO" = (/obj/machinery/iv_drip{density = 0},/obj/item/roller,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aPP" = (/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner"; icon_state = "warnplatecorner"; dir = 2},/area/space) -"aPQ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aPR" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aPS" = (/obj/machinery/computer/cloning,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aPT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aPU" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (EAST)"; icon_state = "darkyellowcorners"; dir = 4},/area/tcommsat/server) -"aPV" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (NORTH)"; icon_state = "darkyellow"; dir = 1},/area/tcommsat/server) -"aPW" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/server) -"aPX" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (NORTH)"; icon_state = "darkyellowcorners"; dir = 1},/area/tcommsat/server) -"aPY" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/medbay) -"aPZ" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/gun/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/reagent_containers/spray,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aQa" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"aQb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) -"aQc" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) -"aQd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) -"aQe" = (/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) -"aQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) -"aQg" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) -"aQh" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) -"aQi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) -"aQj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) -"aQk" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) -"aQl" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/research) -"aQm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) -"aQn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) -"aQo" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aQp" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)"; icon_state = "darkblue"; dir = 9},/area/bridge) -"aQq" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) -"aQr" = (/obj/structure/bed/chair{dir = 1; name = "Logistics Station"},/turf/simulated/floor/plasteel/darkbrown,/area/bridge) -"aQs" = (/turf/simulated/floor/plasteel/darkpurple/corner,/area/bridge) -"aQt" = (/turf/simulated/floor/plasteel/darkpurple/side,/area/bridge) -"aQu" = (/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/bridge) -"aQv" = (/obj/structure/bed/chair{dir = 1; name = "Security Station"},/turf/simulated/floor/plasteel/darkred,/area/bridge) -"aQw" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) -"aQx" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) -"aQy" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aQz" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/camera{c_tag = "Art Bubble"; dir = 8; network = list("MINE")},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aQA" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) -"aQB" = (/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Medical Research Chemistry"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (NORTHWEST)"; icon_state = "whiteyellow"; dir = 9},/area/medical/research) -"aQC" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellow"},/area/medical/research) -"aQD" = (/obj/machinery/chem_dispenser/constructable,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteyellow"},/area/medical/research) -"aQE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/turf/simulated/floor/plating,/area/medical/research) -"aQF" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aQG" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel{tag = "icon-whitebot"; icon_state = "whitebot"},/area/medical/research) -"aQH" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -3; pixel_y = -3},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aQI" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aQJ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aQK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aQL" = (/obj/structure/table,/obj/item/clothing/suit/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/engine/gravity_generator) -"aQM" = (/obj/structure/table,/obj/item/clothing/head/radiation,/obj/item/weapon/screwdriver,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/engine/gravity_generator) -"aQN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aQU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"aQV" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aQW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"aQX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aQY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aQZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aRa" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 19},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aRb" = (/obj/structure/closet/emcloset,/obj/machinery/status_display{density = 0; pixel_x = 0; pixel_y = 32; supply_display = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)"; icon_state = "brown"; dir = 9},/area/quartermaster/miningdock) -"aRc" = (/obj/structure/closet/crate,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/miningdock) -"aRd" = (/obj/machinery/power/apc{dir = 1; name = "Mining APC"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 0; pixel_y = 38},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/quartermaster/miningdock) -"aRe" = (/obj/machinery/light{dir = 1},/obj/structure/closet/secure_closet/miner,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/quartermaster/miningdock) -"aRf" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2; pixel_y = -3},/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel{dir = 5; icon_state = "brown"},/area/quartermaster/miningdock) -"aRg" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aRh" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Infirmary"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aRi" = (/obj/machinery/door/window{dir = 8; name = "Tool Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aRj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aRk" = (/obj/machinery/clonepod,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aRl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aRm" = (/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Shutters"; pixel_y = -26},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"aRn" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aRo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aRp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aRq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aRr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aRs" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/wall,/area/hallway/primary/port) -"aRt" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/tcommsat/server) -"aRu" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) -"aRv" = (/obj/structure/table,/obj/item/weapon/gun/syringe{pixel_x = 1; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aRw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aRx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aRy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) -"aRz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/tcommsat/lounge) -"aRA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/lounge) -"aRB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/lounge) -"aRC" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/tcommsat/lounge) -"aRD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/lounge) -"aRE" = (/obj/machinery/power/apc{dir = 2; name = "Telecoms Monitoring APC"; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/lounge) -"aRF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/space) -"aRG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"aRH" = (/turf/simulated/floor/plasteel/black,/area/bridge) -"aRI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/bridge) -"aRJ" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/bridge) -"aRK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/bridge) -"aRL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/paint/blue,/obj/item/weapon/paint/red{pixel_x = 12},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aRM" = (/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/paint/green,/obj/item/weapon/paint/violet{pixel_x = 12},/obj/item/weapon/paint/yellow{pixel_x = -12},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aRN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/paint/black,/obj/item/weapon/paint/white{pixel_x = -12},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aRO" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/research) -"aRP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aRQ" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/research) -"aRR" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5, 47"},/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/research) -"aRS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aRT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aRU" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aRV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aRW" = (/obj/machinery/camera{c_tag = "Medical Research"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aRX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aRY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aRZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aSa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aSb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aSc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/starboard) -"aSd" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"aSe" = (/obj/machinery/power/apc{dir = 2; name = "Starboard Primary Hallway APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/starboard) -"aSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/rack,/obj/item/weapon/pickaxe{attack_verb = list("ineffectively hit"); desc = "A pickaxe designed to be only effective at digging rock and ore, very ineffective as a weapon."; force = 1; name = "safety pickaxe"; pixel_x = 5; throwforce = 1},/obj/item/weapon/ore/iron,/obj/item/weapon/ore/iron,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSh" = (/obj/structure/rack,/obj/item/weapon/ore/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSi" = (/obj/structure/table,/obj/item/weapon/storage/bag/ore,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSk" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/quartermaster/miningdock) -"aSl" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"aSm" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aSn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aSo" = (/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aSp" = (/obj/machinery/camera{c_tag = "Mining Office"; dir = 8; network = list("SS13")},/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) -"aSq" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/mining) -"aSr" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/mining) -"aSs" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/mining) -"aSt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aSu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aSv" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aSw" = (/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) -"aSx" = (/obj/machinery/message_server,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aSy" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/tcommsat/server) -"aSz" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/server) -"aSA" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aSB" = (/obj/machinery/disposal/bin,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"aSC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"aSD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aSE" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aSF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Telcom Storage"; req_access_txt = "23"},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) -"aSG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/lounge) -"aSH" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) -"aSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) -"aSJ" = (/obj/machinery/power/terminal,/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) -"aSK" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) -"aSL" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"aSM" = (/obj/machinery/computer/shuttle/labor,/turf/simulated/floor/plasteel/black,/area/bridge) -"aSN" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel/black,/area/bridge) -"aSO" = (/obj/machinery/computer/shuttle/mining,/turf/simulated/floor/plasteel/black,/area/bridge) -"aSP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/bridge) -"aSQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/bridge) -"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/bridge) -"aSS" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel/black,/area/bridge) -"aST" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/black,/area/bridge) -"aSU" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel/black,/area/bridge) -"aSV" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"aSW" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aSX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aSY" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/pillbottles,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/research) -"aSZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aTa" = (/obj/machinery/chem_master{pixel_x = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/research) -"aTb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/research) -"aTc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aTe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aTf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aTg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aTh" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"aTi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/starboard) -"aTj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"aTk" = (/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"aTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aTm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"aTn" = (/turf/simulated/wall,/area/quartermaster/qm) -"aTo" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/computer/shuttle/mining{req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"aTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aTq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aTr" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) -"aTs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"aTt" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/mining) -"aTu" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aTv" = (/obj/machinery/computer/shuttle/mining,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aTw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/space) -"aTx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/gravity_generator) -"aTy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/gravity_generator) -"aTz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/gravity_generator) -"aTA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe/charcoal,/obj/item/weapon/reagent_containers/syringe/charcoal{pixel_y = 2},/obj/item/weapon/reagent_containers/syringe/charcoal{pixel_y = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aTB" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) -"aTC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aTD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"aTE" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aTF" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aTG" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"aTH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aTI" = (/turf/simulated/wall/r_wall,/area/storage/secure) -"aTJ" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/storage/secure) -"aTK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/secure) -"aTL" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/secure) -"aTM" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) -"aTN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) -"aTO" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"aTP" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHWEST)"; icon_state = "darkblue"; dir = 10},/area/bridge) -"aTQ" = (/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"aTR" = (/obj/structure/bed/chair{dir = 1; name = "Crew Station"},/turf/simulated/floor/plasteel/darkyellow,/area/bridge) -"aTS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"aTT" = (/obj/machinery/door/window{dir = 1; name = "Secure Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aTU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aTV" = (/obj/structure/bed/chair{dir = 1; name = "Crew Station"},/turf/simulated/floor/plasteel/darkgreen,/area/bridge) -"aTW" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHEAST)"; icon_state = "darkblue"; dir = 6},/area/bridge) -"aTX" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"aTY" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteyellow"},/area/medical/research) -"aTZ" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aUa" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whiteyellow"},/area/medical/research) -"aUb" = (/obj/structure/table,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aUd" = (/obj/machinery/power/apc{dir = 4; name = "Medical Research APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aUe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/maintcentral) -"aUf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aUg" = (/turf/simulated/wall,/area/maintenance/maintcentral) -"aUh" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"aUi" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/destTagger,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)"; icon_state = "brown"; dir = 9},/area/quartermaster/qm) -"aUj" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUk" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUm" = (/obj/machinery/camera/autoname{dir = 2; network = list("SS13")},/obj/machinery/hologram/holopad,/obj/machinery/power/apc{dir = 1; name = "Quartermaster's Office APC"; pixel_x = 0; pixel_y = 30},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/quartermaster/qm) -"aUo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) -"aUp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aUq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aUr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"aUs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aUt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aUu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aUv" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) -"aUw" = (/obj/item/weapon/ore/iron,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/quartermaster/miningdock) -"aUx" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Mining Dock"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/quartermaster/miningdock) -"aUy" = (/obj/structure/sign/vacuum{pixel_x = -30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aUz" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aUA" = (/obj/structure/sign/vacuum{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aUB" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUC" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUD" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) -"aUE" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUF" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUG" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7; pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners"; icon_state = "darkyellowcorners"},/area/tcommsat/server) -"aUI" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/server) -"aUJ" = (/obj/machinery/telecomms/receiver/preset_left,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) -"aUK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) -"aUL" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/engine/gravity_generator) -"aUM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aUN" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Telecoms Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/storage/secure) -"aUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/secure) -"aUP" = (/turf/simulated/floor/plating,/area/storage/secure) -"aUQ" = (/obj/machinery/vending/engivend,/turf/simulated/floor/plating,/area/storage/secure) -"aUR" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"aUS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/bridge) -"aUT" = (/turf/simulated/floor/plasteel{tag = "icon-stairs-old"; icon_state = "stairs-old"},/area/bridge) -"aUU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-old"; icon_state = "stairs-old"},/area/bridge) -"aUV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) -"aUW" = (/turf/simulated/wall/r_wall,/area/bridge) -"aUX" = (/turf/simulated/wall,/area/medical/research) -"aUY" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/engine/gravity_generator) -"aUZ" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/research) -"aVa" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/research) -"aVb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aVc" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_3) -"aVd" = (/turf/simulated/wall/r_wall,/area/maintenance/maintcentral) -"aVe" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aVf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aVg" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aVh" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) -"aVi" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Quatermaster RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/qm) -"aVj" = (/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aVk" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aVl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aVm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aVn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/qm) -"aVo" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aVp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aVq" = (/obj/item/device/radio/intercom{pixel_y = -30},/obj/machinery/camera{c_tag = "Mining"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/miningdock) -"aVr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/quartermaster/miningdock) -"aVs" = (/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aVt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aVu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) -"aVv" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"aVw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aVx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aVy" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"},/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"aVz" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/obj/docking_port/mobile{dir = 4; dwidth = 3; height = 5; id = "mining"; name = "mining shuttle"; travelDir = 90; width = 7},/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; width = 7},/turf/simulated/floor/plating,/area/shuttle/mining) -"aVA" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aVB" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/shuttle/mining) -"aVC" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aVE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aVF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aVG" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aVH" = (/obj/machinery/power/apc{dir = 8; name = "Telecoms Storage APC"; pixel_x = -26; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/tcommsat/server) -"aVI" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aVJ" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aVK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/secure) -"aVL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aVM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aVN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/storage/secure) -"aVO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aVP" = (/obj/machinery/power/apc{dir = 4; name = "Telecoms Storage APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/storage/secure) -"aVQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"aVR" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"aVS" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) -"aVT" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVU" = (/obj/effect/landmark{name = "Nuclear-Bomb"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVV" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/quartermaster/qm) -"aVX" = (/obj/structure/optable,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVY" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/robot_parts/l_arm,/obj/item/robot_parts/r_arm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aVZ" = (/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aWa" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aWb" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aWc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aWd" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"aWe" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "13,8"},/turf/simulated/floor/plating,/area/medical/research) -"aWf" = (/turf/simulated/floor/plasteel,/area/medical/research) -"aWg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/medical/research) -"aWh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/research) -"aWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aWj" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aWk" = (/obj/structure/table,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/research) -"aWl" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aWm" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_3) -"aWn" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_3) -"aWo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aWp" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"aWq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aWr" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm{pixel_x = 0; pixel_y = 0},/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/qm) -"aWs" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/device/gps{gpstag = "QM0"},/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aWt" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aWu" = (/obj/machinery/computer/supplycomp,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aWv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aWw" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/qm) -"aWx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"aWy" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"aWz" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/item/clothing/suit/hooded/wintercoat/miner,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) -"aWA" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/quartermaster/miningdock) -"aWB" = (/obj/machinery/camera{c_tag = "Mining Dock External"; dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/quartermaster/miningdock) -"aWC" = (/turf/simulated/wall,/area/medical/virology) -"aWD" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aWE" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aWG" = (/obj/structure/flora/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aWH" = (/turf/simulated/floor/plasteel,/area/medical/surgery) -"aWI" = (/obj/machinery/power/apc{dir = 8; name = "Surgery APC"; pixel_x = -24; pixel_y = 0},/obj/structure/bed/chair{dir = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel,/area/medical/surgery) -"aWJ" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"aWK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"aWL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aWM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aWN" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aWO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aWP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/secure) -"aWQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating,/area/storage/secure) -"aWR" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/secure) -"aWS" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 2; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/paladin,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/robocop,/obj/item/weapon/aiModule/core/full/custom,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/ai_upload) -"aWT" = (/obj/structure/table,/obj/item/weapon/folder/blue,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"aWU" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"aWV" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"aWW" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"aWX" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/device/multitool,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"aWY" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"aWZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"aXa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"aXb" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/bridge) -"aXc" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aXd" = (/obj/machinery/teleport/station,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aXe" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aXf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aXg" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel,/area/medical/research) -"aXh" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel{tag = "icon-whitebot"; icon_state = "whitebot"},/area/medical/research) -"aXi" = (/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/robot_parts/chest,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aXj" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/research) -"aXk" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research) -"aXl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/lawoffice) -"aXm" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) -"aXn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aXp" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"aXq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aXr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aXs" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/qm) -"aXt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) -"aXu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) -"aXv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) -"aXw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) -"aXx" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/quartermaster/qm) -"aXy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/qm) -"aXz" = (/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aXA" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aXB" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining"; departmentType = 0; name = "Mining RC"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/miningdock) -"aXC" = (/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) -"aXD" = (/obj/machinery/light,/obj/structure/ore_box,/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) -"aXE" = (/obj/structure/rack{dir = 1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/quartermaster/miningdock) -"aXF" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aXG" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/shuttle/mining) -"aXH" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"aXI" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/surgery) -"aXJ" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"aXK" = (/obj/machinery/camera{c_tag = "Telecoms Server Room"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/tcommsat/server) -"aXL" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aXM" = (/obj/machinery/telecomms/server/presets/command,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aXN" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"aXO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aXP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/science{name = "Medical Research"; req_access_txt = "5, 47"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"aXQ" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera{c_tag = "Medbay Backup Control"; dir = 8; network = list("MINE")},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aXR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aXS" = (/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aXT" = (/turf/simulated/wall,/area/crew_quarters/cafeteria) -"aXU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) -"aXV" = (/turf/simulated/wall/r_wall,/area/crew_quarters/cafeteria) -"aXW" = (/obj/structure/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/message_monitor{pixel_y = -5},/turf/simulated/floor/plating,/area/storage/secure) -"aXX" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/simulated/floor/plating,/area/storage/secure) -"aXY" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"aXZ" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aYa" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"aYb" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"aYc" = (/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aYd" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aYe" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aYf" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aYg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aYh" = (/obj/structure/computerframe,/obj/item/weapon/paper{info = "

Teleporter Instruction


  1. Install circuit board, glass and wiring to complete Teleporter Control Console
  2. Use a screwdriver, wirecutter and screwdriver again on the Teleporter Station to connect it
  3. Set destination with Teleporter Control Computer
  4. Activate Teleporter Hub with Teleporter Station
"; name = "Teleporter Instructions"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aYi" = (/obj/machinery/teleport/hub/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aYj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aYk" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aYl" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aYm" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aYn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aYo" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"aYp" = (/obj/structure/rack,/obj/item/stack/sheet/glass{amount = 50},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aYq" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aYr" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"aYs" = (/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) -"aYt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aYu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aYv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aYw" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"aYx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"aYz" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining{name = "Quatermaster"; req_access_txt = "41"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aYA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/quartermaster/qm) -"aYB" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/qm) -"aYC" = (/obj/structure/closet/wardrobe/cargotech,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aYD" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/mining) -"aYE" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/mining) -"aYF" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/mining) -"aYG" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/mining) -"aYH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/virology) -"aYI" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/medical/surgery) -"aYJ" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"aYK" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aYL" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aYM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aYN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aYO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aYP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"aYQ" = (/obj/machinery/camera{c_tag = "Bar"; dir = 2; network = list("SS13")},/obj/machinery/requests_console{department = "Cafe"; departmentType = 2; name = "Cafe RC"; pixel_x = 0; pixel_y = 30},/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/obj/structure/table,/obj/item/clothing/under/rank/bartender,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"aYR" = (/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/table,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"aYS" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/simulated/floor/plating,/area/storage/secure) -"aYT" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plating,/area/storage/secure) -"aYU" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/simulated/floor/plating,/area/storage/secure) -"aYV" = (/obj/machinery/computer/upload/ai,/obj/machinery/flasher{id = "AI"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"aYW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"aYX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"aYY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"aYZ" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = -30; pixel_y = 0},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "AI Upload Exterior"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZb" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating/airless,/area/space) -"aZc" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) -"aZd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aZe" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) -"aZf" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) -"aZg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 3},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aZh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aZi" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) -"aZj" = (/turf/simulated/wall,/area/quartermaster/office) -"aZk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"aZl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"aZm" = (/turf/simulated/floor/plasteel,/area/quartermaster/office) -"aZn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aZo" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/quartermaster/storage) -"aZp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/storage) -"aZq" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aZr" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/medical/medbay) -"aZs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"aZt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aZu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/medical/surgery) -"aZv" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/medical/surgery) -"aZw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"aZx" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery) -"aZy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"aZz" = (/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"aZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZB" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/secure) -"aZC" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/turf/simulated/floor/plating,/area/storage/secure) -"aZD" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/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/crystal,/turf/simulated/floor/plating,/area/storage/secure) -"aZE" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) -"aZF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aZG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/port) -"aZH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"aZI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"aZJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"aZK" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "AI Upload"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aZL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aZM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aZN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aZO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aZP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"aZQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed"; locked = 0; name = "AI Upload Access"; req_access_txt = "16"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"aZR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -22},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"aZV" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aZW" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aZX" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"aZY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/maintcentral) -"aZZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"baa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bab" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/hallway/primary/starboard) -"bac" = (/obj/machinery/mineral/ore_redemption{input_dir = 1},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) -"bad" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/office) -"bae" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"baf" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bag" = (/obj/machinery/bot/mulebot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #1"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) -"bah" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"bai" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"baj" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) -"bak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/science{name = "Medical Research"; req_access_txt = "5, 47"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"bal" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bam" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/orange{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ban" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bao" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bap" = (/turf/simulated/wall/r_wall,/area/medical/virology) -"baq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bar" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/medical/cryo) -"bas" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/virology) -"bat" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall,/area/medical/cryo) -"bau" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/wall,/area/medical/medbay) -"bav" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/chem_dispenser/drinks,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"baw" = (/obj/machinery/reagentgrinder,/obj/structure/table,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bax" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bay" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"baz" = (/obj/machinery/computer/upload/borg,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"baA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"baB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"baC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"baD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"baE" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"baF" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"baG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"baH" = (/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"baI" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baJ" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baK" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/maintcentral) -"baN" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baP" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"baR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"baS" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"baT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"baU" = (/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) -"baV" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) -"baW" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) -"baX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) -"baY" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 2; network = list("MiniSat")},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) -"baZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) -"bba" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) -"bbb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) -"bbc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) -"bbd" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) -"bbe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral) -"bbf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral) -"bbg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"bbh" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bbi" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bbj" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) -"bbk" = (/obj/machinery/camera{c_tag = "Cargo Office"; dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 23; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bbl" = (/obj/machinery/bot/mulebot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #2"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) -"bbm" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/medical/cryo) -"bbn" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"bbo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/medical/surgery) -"bbp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bbq" = (/obj/machinery/computer/operating,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bbr" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bbs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bbt" = (/obj/machinery/door/airlock/science{name = "Chemistry"; req_access_txt = "5, 47"},/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"bbu" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bbv" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bbw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bbx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bby" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bbz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bbA" = (/obj/machinery/alarm{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bbB" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bbC" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bbD" = (/obj/machinery/power/apc{cell_type = 10000; dir = 2; name = "Upload APC"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"bbE" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bbF" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bbG" = (/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bbH" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bbI" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bbJ" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/item/weapon/storage/secure/safe{pixel_x = 35; pixel_y = 5},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bbK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Command North"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bbL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbU" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/space) -"bbW" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/space) -"bbX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating/airless,/area/space) -"bbY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bbZ" = (/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) -"bca" = (/obj/machinery/nuclearbomb/selfdestruct{layer = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/nuke_storage) -"bcb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/nuke_storage) -"bcc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/nuke_storage) -"bcd" = (/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) -"bce" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_3) -"bcf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral) -"bcg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral) -"bch" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral) -"bci" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bcj" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bck" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bcl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/office) -"bcm" = (/obj/machinery/autolathe,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bcn" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bco" = (/obj/machinery/bot/mulebot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #3"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) -"bcp" = (/turf/simulated/wall,/area/chapel/main) -"bcq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bcr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bcs" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bct" = (/obj/structure/bodycontainer/crematorium,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bcu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; icon_state = "dvalve_map"; state_open = 1; tag = "icon-dvalve_map (EAST)"},/turf/simulated/floor/plating,/area/medical/cryo) -"bcv" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bcw" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/medical/cryo) -"bcx" = (/obj/machinery/power/apc{dir = 1; name = "Medbay APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/floor/plating,/area/medical/medbay) -"bcy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/cryo) -"bcz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Cryo Room"; req_access_txt = "5"},/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/medical/cryo) -"bcA" = (/obj/machinery/power/apc{dir = 1; name = "Medbay APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/medical/cryo) -"bcB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bcC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"bcD" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/virology) -"bcE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Observation"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/surgery) -"bcF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bcG" = (/obj/structure/bed/roller,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{id = "MedResShutters"; name = "Chemistry Shutters"; pixel_x = -26; pixel_y = 0; req_access_txt = "5, 47"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"bcH" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bcI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bcJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bcK" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bcL" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bcM" = (/obj/structure/table,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bcN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bcO" = (/turf/simulated/wall,/area/maintenance/port) -"bcP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/maintenance/port) -"bcQ" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bcR" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left"; dir = 1; icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bcS" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bcT" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bcU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/camera{c_tag = "Captain's Office Lobby"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bcV" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; icon_state = "dvalve_map"; state_open = 1; tag = "icon-dvalve_map (EAST)"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/cryo) -"bcW" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bcX" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bcY" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bcZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bda" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bdb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bdc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bdd" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bde" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bdf" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bdg" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bdh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bdi" = (/turf/simulated/wall/r_wall,/area/space) -"bdj" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) -"bdk" = (/obj/structure/closet/secure_closet/freezer/money,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/clothing/head/bearpelt,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) -"bdl" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1; pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1; pixel_y = -2},/obj/item/weapon/storage/belt/champion,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) -"bdm" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) -"bdn" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_3) -"bdo" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_3) -"bdp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral) -"bdq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral) -"bdr" = (/obj/machinery/door/window{dir = 1; name = "AI Core Door"; req_access_txt = "16"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"bds" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bdt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 2},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bdu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) -"bdv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/hallway/primary/starboard) -"bdw" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Cargo Desk"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bdx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bdy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bdz" = (/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bdA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/office) -"bdB" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bdC" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bdD" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bdE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/chapel/main) -"bdF" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdG" = (/obj/machinery/button/crematorium{pixel_x = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/simulated/floor/plating,/area/medical/cryo) -"bdI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/cryo) -"bdJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/cryo) -"bdK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Cryo Control"; dir = 8; network = list("MINE")},/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/medical/cryo) -"bdL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/morgue) -"bdN" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/simulated/wall,/area/medical/morgue) -"bdO" = (/turf/simulated/wall,/area/medical/morgue) -"bdP" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"bdQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) -"bdR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"bdS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) -"bdT" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"bdU" = (/obj/machinery/atmospherics/components/unary/tank{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bdV" = (/obj/machinery/power/port_gen/pacman,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 32; pixel_y = 0},/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bdW" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bdX" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/maintenance/port) -"bdY" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/maintenance/port) -"bdZ" = (/obj/machinery/vending/boozeomat,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/turf/simulated/floor/plasteel{icon_state = "wood"},/area/maintenance/port) -"bea" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"beb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bec" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bed" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bee" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bef" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"beg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"beh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"bei" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bej" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bek" = (/obj/machinery/power/apc{cell_type = 10000; dir = 8; name = "Bridge APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/bridge) -"bem" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"ben" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) -"beo" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bep" = (/obj/machinery/computer/supplycomp,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"beq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ber" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/obj/item/device/multitool,/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = 0},/obj/item/stack/packageWrap,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bes" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bet" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/storage) -"beu" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bev" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bew" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bex" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"bey" = (/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTHEAST)"; icon_state = "carpetsymbol"; dir = 5},/area/chapel/main) -"bez" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"beA" = (/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"beB" = (/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"beC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"beD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"beE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating,/area/medical/cryo) -"beF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"beG" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/virology) -"beH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plating,/area/medical/cryo) -"beI" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating,/area/medical/cryo) -"beJ" = (/turf/simulated/floor/plating,/area/medical/cryo) -"beK" = (/obj/structure/flora/kirbyplants,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"beL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"beM" = (/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"beN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"beO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/watertank,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"beP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor/plating,/area/medical/cryo) -"beQ" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor/plating,/area/medical/cryo) -"beR" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"beS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"beT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"beU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"beV" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall,/area/medical/cryo) -"beW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"beX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"beY" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) -"beZ" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bfa" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/port) -"bfb" = (/obj/structure/table,/turf/simulated/floor/wood,/area/maintenance/port) -"bfc" = (/turf/simulated/floor/wood{tag = "icon-wood-broken4"; icon_state = "wood-broken4"},/area/maintenance/port) -"bfd" = (/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/port) -"bfe" = (/turf/simulated/floor/wood,/area/maintenance/port) -"bff" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/maintenance/port) -"bfg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bfh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bfi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bfj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bfk" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/camera,/obj/item/weapon/storage/photo_album{pixel_y = -10},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bfl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bfm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bfn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bfo" = (/obj/machinery/door/airlock/command{name = "Command Maintence"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bfp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bfq" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bfr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/maintcentral) -"bfs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bft" = (/obj/machinery/power/apc{dir = 1; name = "Bridge Maintenance APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bfu" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bfv" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bfw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bfx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bfy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) -"bfz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) -"bfA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office) -"bfB" = (/obj/structure/filingcabinet/filingcabinet,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bfD" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bfE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bfF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bfG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bfH" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bfI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bfJ" = (/turf/simulated/floor/plating,/area/quartermaster/storage) -"bfK" = (/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bfL" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"bfM" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/chapel/main) -"bfN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/chapel/main) -"bfO" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bfP" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"bfQ" = (/obj/structure/table_frame,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bfR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bfS" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bfU" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bfV" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bfW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bfX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bfY" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bfZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bga" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/port) -"bgb" = (/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/structure/table_frame,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bgc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bgd" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bge" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bgf" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/port) -"bgg" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/badrecipe,/turf/simulated/floor/wood,/area/maintenance/port) -"bgh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/maintenance/port) -"bgi" = (/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/port) -"bgj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/captain) -"bgk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/captain) -"bgl" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bgm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bgn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bgo" = (/obj/machinery/power/apc{cell_type = 10000; dir = 4; name = "Command Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bgp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/maintcentral) -"bgq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bgr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance{name = "Command Maintenance"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bgs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bgt" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bgu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bgv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bgw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bgx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bgy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bgz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bgA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) -"bgB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) -"bgC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bgD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bgE" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bgF" = (/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bgG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bgH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bgI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bgJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bgK" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bgL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/quartermaster/storage) -"bgM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bgN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bgO" = (/turf/simulated/floor/carpet,/area/chapel/main) -"bgP" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"bgQ" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"bgR" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bgS" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bgT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bgU" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"bgV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bgW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bgX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bgY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bgZ" = (/turf/simulated/wall,/area/medical/surgery) -"bha" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bhb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"bhc" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"bhd" = (/obj/machinery/microwave,/obj/structure/table,/turf/simulated/floor/wood,/area/maintenance/port) -"bhe" = (/turf/simulated/floor/wood{tag = "icon-wood-broken2"; icon_state = "wood-broken2"},/area/maintenance/port) -"bhf" = (/obj/structure/bed/stool,/turf/simulated/floor/wood,/area/maintenance/port) -"bhg" = (/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"bhh" = (/obj/structure/bed/stool,/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/port) -"bhi" = (/turf/simulated/floor/wood{tag = "icon-wood-broken7"; icon_state = "wood-broken7"},/area/maintenance/port) -"bhj" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plating,/area/maintenance/port) -"bhk" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bhl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bhm" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bhn" = (/obj/structure/table/wood,/obj/item/weapon/coin/plasma,/obj/item/weapon/hand_tele,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bho" = (/obj/structure/table/wood,/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bhp" = (/obj/machinery/light_switch{pixel_y = 23},/obj/item/device/radio/intercom{pixel_x = 30},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bhq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) -"bhr" = (/turf/simulated/wall/r_wall,/area/teleporter) -"bhs" = (/turf/simulated/wall,/area/teleporter) -"bht" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bhu" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bhv" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bhw" = (/obj/item/trash/can,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bhx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bhy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bhz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) -"bhA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office) -"bhB" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMDeliver"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bhC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bhD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bhE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bhF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bhG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bhH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bhI" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMUnload"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bhJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bhK" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bhL" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"bhM" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"bhN" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bhO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bhP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"bhQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/medical/cryo) -"bhR" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bhS" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bhT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/cryo) -"bhU" = (/obj/structure/table,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bhV" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/cryo) -"bhW" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bhX" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bhY" = (/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating,/area/maintenance/port) -"bhZ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"bia" = (/turf/simulated/floor/wood{tag = "icon-wood-broken3"; icon_state = "wood-broken3"},/area/maintenance/port) -"bib" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/port) -"bic" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood,/area/maintenance/port) -"bid" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"bie" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bif" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/port) -"big" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bih" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/maintenance/port) -"bii" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30; pixel_y = 0},/obj/structure/filingcabinet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bij" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bik" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bil" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/effect/landmark/start{name = "Captain"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bim" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bin" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bio" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/teleporter) -"bip" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/obj/structure/table,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) -"biq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bir" = (/obj/machinery/camera{c_tag = "Teleporter"},/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bis" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bit" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/teleporter) -"biu" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel/black,/area/teleporter) -"biv" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"biw" = (/turf/simulated/floor/plating,/area/space) -"bix" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/space) -"biy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/space) -"biz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"biA" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"biB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"biC" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"biD" = (/obj/machinery/conveyor{dir = 8; id = "QMDeliver"},/turf/simulated/floor/plating,/area/quartermaster/office) -"biE" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMDeliver"},/turf/simulated/floor/plating,/area/quartermaster/office) -"biF" = (/obj/machinery/conveyor{dir = 8; id = "QMDeliver"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/quartermaster/office) -"biG" = (/obj/machinery/power/apc{dir = 2; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"biH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"biI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"biJ" = (/obj/machinery/power/apc{dir = 2; name = "Cargo Bay APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"biK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"biL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"biM" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) -"biN" = (/obj/machinery/conveyor{dir = 4; id = "QMUnload"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"biO" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"biP" = (/obj/machinery/conveyor{dir = 4; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/quartermaster/storage) -"biQ" = (/obj/structure/bed/chair{dir = 4},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"biR" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"biS" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"biT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/chapel/main) -"biU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"biV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"biW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"biX" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"biY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"biZ" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"bja" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bjb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bjc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) -"bjd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bje" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bjf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bjg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bjh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) -"bji" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bjj" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bjk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bjl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bjm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bjn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bjo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bjp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) -"bjq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"bjr" = (/obj/machinery/door/airlock/maintenance{name = "The Lowered Bar"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bjs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bjt" = (/obj/item/stack/sheet/metal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bju" = (/obj/item/weapon/rack_parts,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bjv" = (/obj/item/stack/sheet/glass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bjw" = (/obj/structure/door_assembly/door_assembly_mai,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bjx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/port) -"bjy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/port) -"bjz" = (/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = -28},/obj/machinery/suit_storage_unit/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bjA" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bjB" = (/turf/simulated/floor/plasteel/black,/area/teleporter) -"bjC" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bjD" = (/obj/machinery/teleport/station,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bjE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bjF" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bjG" = (/turf/simulated/wall,/area/library) -"bjH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/library) -"bjI" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/library) -"bjJ" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"bjL" = (/turf/simulated/wall,/area/quartermaster/sorting) -"bjM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/quartermaster/sorting) -"bjN" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bjO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/sorting) -"bjP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/sorting) -"bjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bjR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bjS" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bjT" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bjU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/chapel/office) -"bjV" = (/turf/simulated/wall,/area/chapel/office) -"bjW" = (/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (EAST)"; icon_state = "carpetsymbol"; dir = 4},/area/chapel/main) -"bjX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"bjY" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bjZ" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bka" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bkb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bkc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"bkd" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) -"bke" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"bkf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/medbay) -"bkg" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bkh" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"bki" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bkj" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bkk" = (/obj/structure/table,/obj/item/trash/plate,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bkl" = (/obj/structure/table,/obj/item/trash/sosjerky,/obj/machinery/camera{c_tag = "Cafe South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bkm" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/cafeteria) -"bkn" = (/obj/structure/transit_tube{icon_state = "S-NE"},/turf/space,/area/space) -"bko" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) -"bkp" = (/turf/simulated/wall,/area/crew_quarters/courtroom) -"bkq" = (/turf/simulated/wall/r_wall,/area/crew_quarters/courtroom) -"bkr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bks" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bkt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"bku" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bkv" = (/obj/machinery/computer/communications,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bkw" = (/obj/machinery/computer/card,/obj/item/weapon/card/id/captains_spare,/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bkx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bky" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bkz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/teleporter) -"bkA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bkB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bkC" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bkD" = (/obj/machinery/firealarm{dir = 2; pixel_y = -28},/obj/machinery/light{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bkE" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bkF" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bkG" = (/obj/item/trash/plate,/obj/item/trash/popcorn,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bkH" = (/obj/item/trash/chips,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bkI" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/trash/candle,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bkJ" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"bkK" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/simulated/floor/wood,/area/library) -"bkL" = (/turf/simulated/floor/carpet,/area/library) -"bkM" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood,/area/library) -"bkN" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/simulated/floor/wood,/area/library) -"bkO" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/library) -"bkP" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/simulated/floor/wood,/area/library) -"bkQ" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bkR" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bkS" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bkT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bkU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"bkV" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Cargo Desk"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bkW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bkX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bkY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bkZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/device/destTagger,/obj/machinery/camera{c_tag = "Delivery Office North"},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bla" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 23},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"blb" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"blc" = (/obj/machinery/power/apc{dir = 1; name = "Delivery Office APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bld" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/sorting) -"ble" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/storage) -"blf" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/storage) -"blg" = (/turf/simulated/wall,/area/quartermaster/storage) -"blh" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bli" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"blj" = (/turf/simulated/floor/carpet,/area/chapel/office) -"blk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/chapel/main) -"bll" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"blm" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"bln" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"blo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) -"blp" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"blq" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/weapon/melee/chainofcommand,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"blr" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bls" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"blt" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"blu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"blv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"blw" = (/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"blx" = (/obj/structure/bed/chair,/obj/machinery/camera{c_tag = "Negotiations Room"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"blz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"blA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/courtroom) -"blB" = (/obj/structure/closet/secure_closet/courtroom,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"blC" = (/obj/structure/bed/chair{name = "Bailiff"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"blD" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"blE" = (/obj/structure/bed/chair{name = "Judge"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/crew_quarters/courtroom) -"blF" = (/obj/structure/bed/chair{name = "Judge"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Courtroom"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/crew_quarters/courtroom) -"blG" = (/obj/structure/bed/chair{name = "Judge"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "blue"},/area/crew_quarters/courtroom) -"blH" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"blI" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"blJ" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"blK" = (/obj/machinery/power/apc{dir = 1; name = "Captain's Quarters APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"blL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"blM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Command South"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"blN" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"blO" = (/obj/item/trash/deadmouse,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"blP" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"blQ" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/wood,/area/library) -"blR" = (/turf/simulated/floor/wood,/area/library) -"blS" = (/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"blT" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"blU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"blV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"blW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/sorting) -"blX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor_switch/oneway{id = "PackageSort1"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"blY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"blZ" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSort2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bma" = (/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bmb" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSort3"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"bmc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bme" = (/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bmf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bmg" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bmh" = (/obj/structure/window,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bmi" = (/obj/structure/window,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bmj" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bmk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 0; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bml" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bmm" = (/obj/machinery/door/airlock{name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bmn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/office) -"bmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bmp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"bmq" = (/obj/machinery/camera{c_tag = "Chapel East"; dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTH)"; icon_state = "carpetsymbol"; dir = 1},/area/chapel/main) -"bmr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"bms" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"bmt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"bmu" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bmv" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bmw" = (/obj/machinery/power/apc{dir = 8; name = "Chapel APC"; pixel_x = -25},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/chapel/main) -"bmx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bmy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/cryo) -"bmz" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bmA" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bmC" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) -"bmD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) -"bmE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bmF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bmG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/port) -"bmH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bmI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bmJ" = (/obj/machinery/power/apc{dir = 1; name = "Cafe APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) -"bmK" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bmL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating/airless,/area/space) -"bmM" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/turf/simulated/floor/plating/airless,/area/space) -"bmN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating/airless,/area/space) -"bmO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bmP" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmQ" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmR" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bmW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/courtroom) -"bmX" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 0; name = "Station Intercom (Court)"; pixel_x = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"bmY" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"bmZ" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"bna" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/crew_quarters/courtroom) -"bnb" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) -"bnc" = (/obj/machinery/door/window/southleft{name = "Court Cell"; req_access_txt = "2"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bnd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/maintenance/port) -"bne" = (/turf/simulated/wall/r_wall,/area/maintenance/port) -"bnf" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Captain's Bedroom"; dir = 4; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bng" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bnh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bni" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bnj" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bnk" = (/obj/structure/sink/kitchen{pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bnl" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bnm" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bnn" = (/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bno" = (/obj/machinery/power/apc{dir = 4; name = "Conference Room APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bnp" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bnq" = (/obj/machinery/photocopier{pixel_y = 3},/turf/simulated/floor/wood,/area/library) -"bnr" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Library North"; dir = 8; network = list("MINE")},/turf/simulated/floor/carpet,/area/library) -"bns" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/library) -"bnt" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bnu" = (/obj/structure/transit_tube{icon_state = "W-SE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bnv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/starboard) -"bnw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/starboard) -"bnx" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bny" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bnz" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bnA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bnB" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bnC" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bnD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bnE" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bnF" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor/plating,/area/chapel/office) -"bnG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/chapel/office) -"bnH" = (/obj/machinery/mass_driver{dir = 8; id = "chapelgun"},/obj/machinery/door/window/eastleft,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/chapel/office) -"bnI" = (/obj/machinery/camera{c_tag = "Chapel Mass Driver"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bnJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTHEAST)"; icon_state = "carpetsymbol"; dir = 5},/area/chapel/main) -"bnK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTHEAST)"; icon_state = "carpetsymbol"; dir = 5},/area/chapel/main) -"bnL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bnM" = (/obj/structure/transit_tube{icon_state = "W-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bnN" = (/turf/simulated/wall/r_wall,/area/medical/morgue) -"bnO" = (/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) -"bnP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/port) -"bnQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/port) -"bnR" = (/obj/machinery/power/apc{dir = 2; name = "Detective APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/security/detectives_office) -"bnS" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bnT" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase"; pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bnU" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bnV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bnW" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bnX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bnY" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/courtroom) -"bnZ" = (/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"boa" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) -"bob" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"boc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bod" = (/obj/machinery/power/apc{dir = 8; name = "Courtroom APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"boe" = (/turf/simulated/floor/plating,/area/maintenance/port) -"bof" = (/turf/simulated/floor/plating,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port) -"bog" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/port) -"boh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"boi" = (/turf/simulated/wall,/area/crew_quarters/captain) -"boj" = (/obj/structure/toilet{dir = 4},/obj/structure/window,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bok" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bol" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bom" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bon" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"boo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bop" = (/obj/structure/bed/chair/comfy/black,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"boq" = (/obj/structure/bed/chair/comfy/black,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bor" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bos" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bot" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bou" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"bov" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/library) -"bow" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/library) -"box" = (/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"boy" = (/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) -"boz" = (/obj/machinery/vending/coffee,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) -"boA" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/turf/simulated/floor/wood,/area/library) -"boB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"boC" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"boD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/sorting) -"boE" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/toxins/storage) -"boF" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"boG" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/hallway/primary/port) -"boH" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"boI" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"boJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"boK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"boL" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"boM" = (/obj/structure/closet/coffin,/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"boN" = (/obj/structure/closet/coffin,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"boO" = (/obj/structure/closet/coffin,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"boP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"boQ" = (/obj/machinery/door/airlock{name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"boR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"boS" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"boT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chaplin RC"; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"boU" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 2; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"boV" = (/obj/machinery/alarm{pixel_y = 25},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"boW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/chapel/office) -"boX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"boY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"boZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"bpa" = (/obj/machinery/light{dir = 1},/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"bpb" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) -"bpc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bpd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"bpe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bpf" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) -"bpg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bph" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bpi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bpj" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bpk" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bpl" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bpm" = (/obj/machinery/light{dir = 1},/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bpn" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port) -"bpo" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/port) -"bpp" = (/turf/simulated/wall/r_wall,/area/hallway/primary/port) -"bpq" = (/turf/simulated/wall/r_wall,/area/security/detectives_office) -"bpr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/detectives_office) -"bps" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/port) -"bpt" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bpu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bpv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bpw" = (/obj/structure/bed/chair{dir = 4; name = "Prosecution"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/crew_quarters/courtroom) -"bpx" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/courtroom) -"bpy" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/courtroom) -"bpz" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) -"bpA" = (/obj/structure/bed/chair{dir = 8; name = "Defense"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "green"},/area/crew_quarters/courtroom) -"bpB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bpC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bpE" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bpF" = (/obj/machinery/status_display{density = 0; layer = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bpG" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bpH" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bpI" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/matches,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bpJ" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap/deluxe,/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bpK" = (/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bpL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"bpM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bpN" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bpO" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bpP" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bpQ" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bpR" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bpS" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"bpT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpU" = (/obj/machinery/power/apc{dir = 2; name = "Primary Tool Storage APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/primary) -"bpV" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"bpW" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"bpX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/library) -"bpY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bpZ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bqa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/carpet,/area/library) -"bqb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bqc" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/library) -"bqd" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bqe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bqf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"bqg" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"bqh" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/hallway/primary/port) -"bqi" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bqj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bqn" = (/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"bqo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"bqp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"bqq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"bqr" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bqs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"bqt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/carpet,/area/chapel/main) -"bqu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"bqv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/chapel/main) -"bqw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"bqx" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bqy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bqz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) -"bqA" = (/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (NORTHWEST)"; icon_state = "whiteyellow"; dir = 9},/area/medical/chemistry) -"bqB" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"bqC" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/multitool,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bqD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bqE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bqF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bqG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = -23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bqH" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva) -"bqI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"bqJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bqK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bqL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) -"bqM" = (/obj/structure/closet/secure_closet/detective,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bqN" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detective's camera"; pictures_left = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bqO" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/item/device/taperecorder{pixel_x = 3; pixel_y = 0},/obj/item/weapon/storage/box/evidence,/obj/item/device/flashlight/seclite,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bqP" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-SW-SE"; tag = "icon-E-SW-NW"},/turf/space,/area/space) -"bqQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/port) -"bqR" = (/turf/simulated/wall/r_wall,/area/lawoffice) -"bqS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/lawoffice) -"bqU" = (/obj/structure/bed/chair{dir = 4; name = "Prosecution"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/crew_quarters/courtroom) -"bqV" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 10},/area/crew_quarters/courtroom) -"bqW" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) -"bqX" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) -"bqY" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 6},/area/crew_quarters/courtroom) -"bqZ" = (/obj/structure/bed/chair{dir = 8; name = "Defense"},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/crew_quarters/courtroom) -"bra" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"brb" = (/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/structure/table/wood,/obj/item/weapon/storage/box/silver_ids,/obj/item/weapon/storage/box/ids,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"brc" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/secure/briefcase,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"brd" = (/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bre" = (/obj/machinery/computer/ordercomp,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"brf" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"brg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"brh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"bri" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"brj" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"brk" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"brl" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"brm" = (/turf/simulated/wall,/area/storage/primary) -"brn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/primary) -"bro" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/storage/primary) -"brp" = (/turf/simulated/wall/r_wall,/area/storage/primary) -"brq" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"brr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/library) -"brs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"brt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bru" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/carpet,/area/library) -"brv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/library) -"brw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brx" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bry" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"brz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) -"brA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) -"brB" = (/obj/machinery/chem_dispenser,/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"brC" = (/obj/effect/landmark/start{name = "Chemist"},/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) -"brD" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) -"brH" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/arrival) -"brI" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"brJ" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"brK" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"brL" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/camera{c_tag = "Chapel Lobby"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/carpet,/area/chapel/main) -"brM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/carpet,/area/chapel/main) -"brN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"brO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) -"brP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/carpet,/area/chapel/main) -"brQ" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"brR" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"brS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"brT" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"brU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"brV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"brW" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/camera{c_tag = "EVA"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"brX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"brY" = (/obj/machinery/vending/sustenance,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"brZ" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bsa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bsb" = (/obj/structure/transit_tube{tag = "icon-NE-SW"; icon_state = "NE-SW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"bsc" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"bsd" = (/obj/structure/transit_tube{tag = "icon-NW-SE"; icon_state = "NW-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"bse" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"bsf" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Law office"; name = "Law RC"; pixel_x = 0; pixel_y = 32},/obj/machinery/newscaster{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/wood,/area/lawoffice) -"bsg" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/pen/red,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/lawoffice) -"bsh" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/obj/item/clothing/glasses/sunglasses,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/lawoffice) -"bsi" = (/obj/machinery/power/apc{dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"bsj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"bsk" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bsl" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bsm" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bsn" = (/obj/machinery/door/window{dir = 1; name = "Courtroom Door"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bso" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bsp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bsq" = (/obj/machinery/door/airlock/maintenance{name = "Courtroom maintenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"bsr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bss" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bst" = (/obj/machinery/recharger,/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = -10},/obj/item/weapon/storage/secure/safe{pixel_x = -26; pixel_y = 4},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bsu" = (/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bsv" = (/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bsw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsy" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "HoP office"},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsz" = (/obj/machinery/computer/security/mining,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsC" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/port) -"bsD" = (/obj/item/weapon/reagent_containers/glass/bowl,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsF" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bsH" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"bsI" = (/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bsJ" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/machinery/camera{c_tag = "Meeting Room"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bsK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bsL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bsM" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bsN" = (/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bsO" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bsP" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel,/area/storage/primary) -"bsQ" = (/turf/simulated/floor/plasteel,/area/storage/primary) -"bsR" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/storage/primary) -"bsS" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel,/area/storage/primary) -"bsT" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; pixel_y = 30},/turf/simulated/floor/plasteel,/area/storage/primary) -"bsU" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"bsV" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/storage/primary) -"bsW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"bsX" = (/obj/machinery/vending/tool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"bsY" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"bsZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/library) -"bta" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/simulated/floor/wood,/area/library) -"btb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/wood,/area/library) -"btc" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/library) -"btd" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/library) -"bte" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/wood,/area/library) -"btf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"btg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/starboard) -"bth" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) -"bti" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSortEnd"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) -"btj" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/port) -"btl" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"btm" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"btn" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bto" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"btp" = (/obj/machinery/vending/cola,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"btq" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"btr" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) -"bts" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/pods,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"btt" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"btw" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"btx" = (/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"bty" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"btz" = (/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"btA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/coffee,/turf/simulated/floor/carpet,/area/chapel/main) -"btB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"btC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"btD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"btE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/secondary/exit) -"btF" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/port) -"btG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"btH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"btI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/medical/morgue) -"btJ" = (/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/camera{c_tag = "Chemistry"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"btK" = (/obj/machinery/chem_master{pixel_x = -2},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"btL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"btM" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"btN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"btO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"btP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"btQ" = (/turf/simulated/floor/carpet,/area/security/detectives_office) -"btR" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/carpet,/area/security/detectives_office) -"btS" = (/obj/machinery/computer/security/wooden_tv{density = 0; pixel_x = 3; pixel_y = 2},/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/security/detectives_office) -"btT" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/safe{pixel_x = 32},/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/carpet,/area/security/detectives_office) -"btU" = (/obj/structure/transit_tube{tag = "icon-S-NE"; icon_state = "S-NE"},/turf/simulated/floor/plating/airless,/area/space) -"btV" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/simulated/floor/plating/airless,/area/space) -"btW" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless,/area/space) -"btX" = (/obj/structure/transit_tube{icon_state = "S-NW"},/turf/simulated/floor/plating/airless,/area/space) -"btY" = (/obj/effect/landmark/start{name = "Lawyer"},/obj/structure/bed/chair/office/dark{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/wood,/area/lawoffice) -"btZ" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"bua" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"bub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/lawoffice) -"buc" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"bud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bue" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"buf" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bug" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"buh" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bui" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"buj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"buk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/courtroom) -"bul" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/port) -"bum" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"bun" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"buo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bup" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"buq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bur" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bus" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"but" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"buu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters"; pixel_x = 0; pixel_y = -26; req_access_txt = "3"},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"buv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"buw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bux" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"buy" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"buz" = (/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/table/glass,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"buA" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"buB" = (/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/obj/structure/table,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"buC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"buD" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"buE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/primary) -"buF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"buG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"buH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"buI" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood,/area/library) -"buJ" = (/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/library) -"buK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) -"buL" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"buM" = (/obj/item/device/camera_film{pixel_y = 9},/obj/item/device/camera_film{pixel_x = -3; pixel_y = 5},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"buN" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"buO" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"buP" = (/obj/machinery/conveyor{dir = 4; id = "PackageSortEnd"},/turf/simulated/floor/plating,/area/quartermaster/sorting) -"buQ" = (/obj/machinery/conveyor{dir = 4; id = "PackageSortEnd"},/obj/machinery/light,/turf/simulated/floor/plating,/area/quartermaster/sorting) -"buR" = (/obj/machinery/conveyor{dir = 4; id = "PackageSortEnd"},/obj/machinery/camera{c_tag = "Delivery Office"; dir = 1; network = list("SS13")},/turf/simulated/floor/plating,/area/quartermaster/sorting) -"buS" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/sorting) -"buT" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/sorting) -"buU" = (/obj/machinery/power/apc{dir = 8; name = "Arrivals APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"buV" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"buW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"buX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"buY" = (/obj/machinery/power/apc{dir = 2; lighting = 3; name = "Chapel Office APC"; pixel_x = 0; pixel_y = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"buZ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/coffee,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet,/area/chapel/main) -"bva" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) -"bvb" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"bvc" = (/obj/structure/bed/chair{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bvd" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/space) -"bve" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 17},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bvf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bvg" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) -"bvh" = (/obj/machinery/reagentgrinder,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = -30; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"bvi" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bvj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bvk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bvl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bvm" = (/obj/structure/dispenser,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bvn" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/structure/table,/obj/machinery/power/apc{dir = 4; name = "E.V.A. Storage APC"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bvo" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/port) -"bvp" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/hand_labeler,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bvq" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bvr" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/secure_data,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bvs" = (/obj/structure/transit_tube{icon_state = "E-NW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/port) -"bvt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"bvu" = (/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/hallway/primary/port) -"bvv" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) -"bvw" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) -"bvx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/lawoffice) -"bvy" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/clothing/glasses/sunglasses/big,/turf/simulated/floor/wood,/area/lawoffice) -"bvz" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/wood,/area/lawoffice) -"bvA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/wood,/area/lawoffice) -"bvB" = (/obj/machinery/photocopier,/obj/machinery/camera{c_tag = "Law Office"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/wood,/area/lawoffice) -"bvC" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bvD" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bvE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bvF" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bvG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"bvH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvI" = (/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvJ" = (/obj/machinery/photocopier{pixel_y = 3},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvK" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvL" = (/obj/machinery/pdapainter,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/computer/secure_data,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvN" = (/obj/machinery/computer/card,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvO" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Head of Personnel"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bvP" = (/turf/simulated/wall,/area/crew_quarters/heads) -"bvQ" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bvR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bvS" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bvT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bvU" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) -"bvV" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bvW" = (/turf/simulated/wall,/area/bridge/meeting_room) -"bvX" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bvY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bvZ" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bwa" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bwb" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/storage/primary) -"bwc" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor/plasteel,/area/storage/primary) -"bwd" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/storage/primary) -"bwe" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel,/area/storage/primary) -"bwf" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/turf/simulated/floor/plasteel,/area/storage/primary) -"bwg" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"bwh" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"bwi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel,/area/storage/primary) -"bwj" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/library) -"bwk" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) -"bwl" = (/obj/item/toy/cards/deck,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"bwm" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) -"bwn" = (/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"; name = "Library Desk Door"; pixel_x = 3; req_access_txt = "37"},/turf/simulated/floor/wood,/area/library) -"bwo" = (/obj/structure/table/wood,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = 0},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/wood,/area/library) -"bwp" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bwq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bwr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bws" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bwt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"bwu" = (/turf/simulated/floor/plasteel/whiteyellow/corner{tag = "icon-whiteyellowcorner (WEST)"; icon_state = "whiteyellowcorner"; dir = 8},/area/medical/chemistry) -"bwv" = (/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 7; pixel_y = 4},/obj/item/weapon/storage/pill_bottle/epinephrine{pixel_x = 3},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHWEST)"; icon_state = "whiteyellow"; dir = 10},/area/medical/chemistry) -"bww" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"},/area/shuttle/arrival) -"bwx" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/shuttle/arrival) -"bwy" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/arrival) -"bwz" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"bwA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/chapel/main) -"bwB" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bwC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bwD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bwE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) -"bwF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bwG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bwH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bwI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bwJ" = (/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bwK" = (/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bwL" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bwM" = (/obj/machinery/button/door{id = "EscapeBarShutters"; name = "Escape Bar Shutter Control"; pixel_y = 24; req_access_txt = "18"},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bwN" = (/obj/structure/table/reinforced,/obj/machinery/chem_dispenser/drinks,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bwO" = (/obj/structure/table/reinforced,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bwP" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bwQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bwR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bwS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bwT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bwU" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bwV" = (/obj/machinery/computer/med_data,/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bwW" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bwX" = (/obj/structure/transit_tube{icon_state = "E-NW"},/obj/structure/sign/directions/science{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = 0; tag = "icon-direction_sci (EAST)"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bwY" = (/obj/structure/transit_tube/station,/obj/structure/transit_tube_pod{tag = "icon-pod (WEST)"; icon_state = "pod"; dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bwZ" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bxa" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bxb" = (/turf/simulated/floor/wood,/area/lawoffice) -"bxc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/wood,/area/lawoffice) -"bxd" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"bxe" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bxf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bxg" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bxh" = (/obj/machinery/power/apc{dir = 8; name = "Head of Personnel APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/heads) -"bxi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"bxj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"bxk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"bxl" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; icon_state = "left"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "hop"; layer = 3.1; name = "privacy shutters"; opacity = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/heads) -"bxm" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bxn" = (/obj/item/weapon/bedsheet/hop,/obj/structure/bed,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bxo" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bxp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/bridge/meeting_room) -"bxq" = (/obj/structure/bed/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/storage/primary) -"bxr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"bxs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"bxt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/storage/primary) -"bxu" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/transport) -"bxv" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bxw" = (/obj/item/weapon/storage/pill_bottle/dice,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"bxx" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/library) -"bxy" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"bxz" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/library) -"bxA" = (/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) -"bxB" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bxC" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bxD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bxE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bxF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bxG" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/primary/starboard) -"bxH" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bxI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bxJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bxK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bxL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) -"bxM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bxN" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bxO" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bxP" = (/obj/structure/bed/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bxQ" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bxR" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/arrival) -"bxS" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bxT" = (/turf/simulated/wall,/area/hallway/secondary/exit) -"bxU" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plasteel{dir = 9; icon_state = "yellow"},/area/storage/tools) -"bxV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bxW" = (/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/exit) -"bxX" = (/obj/machinery/camera{c_tag = "Escape Bar"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bxY" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bxZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/button/door{id = "evaescape"; name = "E.V.A. Escape Shutter Control"; pixel_y = -24; req_access_txt = "18"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bya" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"byb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 23; pixel_y = -23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"byc" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 1; name = "RCD Storage"; pixel_x = 1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"byd" = (/obj/machinery/door/window/northleft{dir = 1; name = "Magboot Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots{pixel_x = 0; pixel_y = 0},/obj/item/clothing/shoes/magboots{pixel_x = 4; pixel_y = -3},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"bye" = (/obj/machinery/door/window/northleft{dir = 1; name = "Jetpack Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 4; pixel_y = -1},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 0; pixel_y = 0},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = -4; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"byf" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"byg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"byh" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"byi" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"byj" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/hallway/primary/central) -"byk" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/hallway/primary/central) -"byl" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/hallway/primary/central) -"bym" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"byn" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/weapon/cartridge/lawyer,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/lawoffice) -"byo" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/lawoffice) -"byp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/lawoffice) -"byq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"byr" = (/obj/structure/closet/lawcloset,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/lawoffice) -"bys" = (/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1; tag = "icon-applebush"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"byt" = (/obj/machinery/camera{c_tag = "Courtroom Observation"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"byu" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"byv" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/heads) -"byw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) -"byx" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) -"byy" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) -"byz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) -"byA" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) -"byB" = (/obj/machinery/flasher{id = "hopflash"; pixel_x = 28},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/camera{c_tag = "HoP line"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/heads) -"byC" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"byD" = (/obj/machinery/camera{c_tag = "HoP Bedroom"; dir = 1; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"byE" = (/obj/structure/dresser,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"byF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"byG" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"byH" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"byI" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"byJ" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"byK" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"byL" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"byM" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/storage/primary) -"byN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/storage/primary) -"byO" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/turf/simulated/floor/plasteel,/area/storage/primary) -"byP" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel,/area/storage/primary) -"byQ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/storage/primary) -"byR" = (/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/storage/primary) -"byS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/storage/primary) -"byT" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"byU" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f9"},/area/shuttle/transport) -"byV" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"byW" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/library) -"byX" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) -"byY" = (/obj/machinery/light,/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) -"byZ" = (/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"bza" = (/obj/machinery/light/small,/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) -"bzb" = (/obj/machinery/light_switch{pixel_y = -28},/turf/simulated/floor/wood,/area/library) -"bzc" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) -"bzd" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bze" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bzf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bzh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bzi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bzj" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bzk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) -"bzl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) -"bzm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) -"bzn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) -"bzo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bzp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) -"bzq" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bzr" = (/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bzs" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bzt" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bzu" = (/turf/space,/area/shuttle/escape) -"bzv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bzw" = (/obj/structure/table,/obj/machinery/door/poddoor/shutters{id = "EscapeBarShutters"; name = "Escape Bar Shutters"},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) -"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evaescape"; name = "E.V.A. Escape Shutter"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva) -"bzy" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evaescape"; name = "E.V.A. Escape Shutter"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva) -"bzz" = (/turf/simulated/wall/r_wall,/area/hallway/primary/central) -"bzA" = (/turf/space,/area/crew_quarters/cafeteria) -"bzB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access = null; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bzC" = (/obj/structure/window,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bzD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/window,/obj/structure/window{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bzE" = (/turf/simulated/floor/plasteel{tag = "icon-stairs-old"; icon_state = "stairs-old"},/area/hallway/primary/central) -"bzF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/window,/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bzG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bzH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/port) -"bzI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) -"bzJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/lawoffice) -"bzK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"bzL" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/item/weapon/storage/backpack/satchel_chem,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"bzM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Courtroom"; opacity = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bzN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bzO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"bzP" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"; tag = "loading"},/area/crew_quarters/heads) -"bzQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"bzR" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"; tag = "loading"},/area/crew_quarters/heads) -"bzS" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"bzT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bzU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bzV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bzW" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/storage/primary) -"bzX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/turf/simulated/floor/plasteel,/area/storage/primary) -"bzY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"bzZ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/primary) -"bAa" = (/obj/machinery/computer/shuttle/ferry/request,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bAb" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/structure/window,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"bAc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/library) -"bAd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) -"bAe" = (/turf/simulated/wall,/area/hallway/primary/central) -"bAf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bAg" = (/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner,/area/hallway/primary/starboard) -"bAh" = (/turf/simulated/wall,/area/hallway/secondary/entry) -"bAi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bAj" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window{name = "Arrivals Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/entry) -"bAk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bAl" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bAm" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bAn" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bAo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bAp" = (/obj/structure/closet/wardrobe/green,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bAq" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bAr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bAs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/exit) -"bAt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAu" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAx" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAz" = (/obj/machinery/light{dir = 1},/obj/machinery/button/door{id = "evaescape"; name = "E.V.A. Escape Shutter Control"; pixel_y = 24; req_access_txt = "18"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAA" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAB" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) -"bAC" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bAD" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAE" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) -"bAF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) -"bAG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) -"bAH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bAJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bAK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) -"bAM" = (/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAN" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAP" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAS" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/central) -"bAU" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bAV" = (/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bAW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bAX" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/central) -"bAY" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bAZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bBa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBc" = (/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBe" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/central) -"bBf" = (/obj/structure/bed/chair,/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bBg" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bBh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bBi" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) -"bBj" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) -"bBk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/warning{dir = 4},/area/hallway/primary/starboard) -"bBl" = (/obj/machinery/door/poddoor/shutters{id = "evaarrival"; name = "E.V.A. Arrival Shutter"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/secondary/entry) -"bBm" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/secondary/entry) -"bBn" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/hallway/secondary/entry) -"bBo" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/secondary/entry) -"bBp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/secondary/entry) -"bBq" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security Post RC"; pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/hallway/secondary/entry) -"bBr" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = null; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bBs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bBt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bBu" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bBv" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bBw" = (/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bBx" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bBy" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"},/area/shuttle/arrival) -"bBz" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/arrival) -"bBA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bBH" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bBI" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bBJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBM" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBN" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) -"bBP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) -"bBQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central) -"bBR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central) -"bBS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central) -"bBT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central) -"bBU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{desc = ""; icon_state = "L13"; name = "floor"},/area/hallway/primary/central) -"bBV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/central) -"bBW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bBX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bBY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"bBZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/central) -"bCa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCc" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCd" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCf" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bCg" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/secondary/entry) -"bCh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/hallway/secondary/entry) -"bCi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bCj" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/hallway/secondary/entry) -"bCk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bCl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bCm" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bCn" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bCo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/hallway/primary/port) -"bCp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/hallway/primary/central) -"bCq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCs" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCt" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"bCu" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/turf/space,/area/space) -"bCv" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) -"bCw" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCz" = (/turf/simulated/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central) -"bCA" = (/turf/simulated/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central) -"bCB" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers"; location = "EVA"},/turf/simulated/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central) -"bCC" = (/turf/simulated/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central) -"bCD" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "EVA2"},/turf/simulated/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central) -"bCE" = (/turf/simulated/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central) -"bCF" = (/turf/simulated/floor/plasteel{desc = ""; icon_state = "L14"},/area/hallway/primary/central) -"bCG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCH" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/hallway/primary/starboard) -"bCK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bCL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bCM" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/hallway/secondary/entry) -"bCN" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/entry) -"bCO" = (/obj/structure/closet/secure_closet/security,/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/entry) -"bCP" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/obj/machinery/computer/card,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/hallway/secondary/entry) -"bCQ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bCR" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/lighter{pixel_x = 4; pixel_y = 2},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bCS" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bCT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bCU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"bCV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/central) -"bCW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bCX" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bCY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/central) -"bCZ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDa" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 15},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bDc" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 21},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDd" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDe" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 20},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDf" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 19},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDg" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 16},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bDi" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 18},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bDj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bDk" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/button/door{id = "evaarrival"; name = "E.V.A. Arrival Shutter Control"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/starboard) -"bDl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bDm" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 1; name = "Arrivals Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/entry) -"bDn" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bDo" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"bDp" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bDq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bDr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bDs" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/secondary/exit) -"bDt" = (/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDy" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDz" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) -"bDA" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) -"bDB" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) -"bDC" = (/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/port) -"bDD" = (/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"bDE" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"bDF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"bDG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) -"bDH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bDI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/central) -"bDJ" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bDK" = (/obj/machinery/vending/sovietsoda,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bDL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bDM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/central) -"bDN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bDO" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bDP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/central) -"bDQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bluecorner"},/area/hallway/primary/central) -"bDR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bDS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) -"bDT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/central) -"bDU" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bDV" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bDW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/central) -"bDX" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/central) -"bDY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/hallway/primary/central) -"bDZ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/hallway/primary/central) -"bEa" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"bEb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"bEc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) -"bEd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) -"bEe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bEf" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bEg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bEh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) -"bEi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) -"bEj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) -"bEk" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) -"bEl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) -"bEm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bEn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) -"bEo" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bEp" = (/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bEq" = (/obj/structure/flora/kirbyplants,/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Escape Central"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bEr" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bEs" = (/turf/simulated/wall,/area/storage/auxillary) -"bEt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/auxillary) -"bEu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bEv" = (/turf/simulated/wall/r_wall,/area/storage/auxillary) -"bEw" = (/obj/machinery/door/airlock{name = "Escape Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plasteel/airless,/area/hallway/secondary/exit) -"bEx" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/exit) -"bEy" = (/turf/simulated/wall/r_wall,/area/security/brig) -"bEz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"bEA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) -"bEB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"bEC" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/hallway/primary/central) -"bED" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bEE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (EAST)"; icon_state = "blueyellow"; dir = 4},/area/hallway/primary/central) -"bEF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/janitor) -"bEG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/janitor) -"bEH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/janitor) -"bEI" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bEJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor) -"bEK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/janitor) -"bEL" = (/turf/simulated/wall,/area/janitor) -"bEM" = (/turf/simulated/wall/r_wall,/area/janitor) -"bEN" = (/turf/simulated/wall/r_wall,/area/atmos) -"bEO" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"bEP" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/aft) -"bEQ" = (/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"bER" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) -"bES" = (/turf/simulated/wall,/area/hydroponics) -"bET" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hydroponics) -"bEU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor/plasteel,/area/hydroponics) -"bEV" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bEW" = (/obj/structure/sign/barsign,/turf/simulated/wall,/area/crew_quarters/bar) -"bEX" = (/turf/simulated/wall,/area/crew_quarters/bar) -"bEY" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{desc = "Closing time; time for you to head out to the places you will be from."; id = "BarShutters"; name = "Bar Shutters"},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bEZ" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bFa" = (/obj/machinery/door/airlock/external{id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bFb" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bFc" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bFd" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFe" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFf" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFh" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFi" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bFk" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"bFl" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) -"bFm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bFn" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bFo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bFp" = (/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bFq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bFr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bFs" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 2},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bFt" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bFu" = (/turf/simulated/floor/plasteel/darkred,/area/space) -"bFv" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/darkred,/area/space) -"bFw" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/brig) -"bFx" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) -"bFy" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/brig) -"bFz" = (/turf/simulated/floor/plasteel/black,/area/security/brig) -"bFA" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bFB" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bFC" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bFD" = (/turf/simulated/wall,/area/security/brig) -"bFE" = (/obj/structure/table,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel,/area/security/brig) -"bFF" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bFG" = (/obj/structure/closet/wardrobe/red,/obj/machinery/camera{c_tag = "Security Locker Room"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bFH" = (/obj/structure/closet/l3closet/security,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bFI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/security/brig) -"bFJ" = (/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bFK" = (/obj/structure/rack,/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bFL" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/hallway/primary/central) -"bFM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bFN" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/central) -"bFO" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/central) -"bFP" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/janitor) -"bFQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel,/area/janitor) -"bFR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bFS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/turf/simulated/floor/plasteel,/area/janitor) -"bFT" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/structure/bed/chair/janicart,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bFU" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/janitor) -"bFV" = (/obj/structure/closet/jcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bFW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/janitor) -"bFX" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plating,/area/atmos) -"bFY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/atmos) -"bFZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/atmos) -"bGa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"bGb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) -"bGc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/atmos) -"bGd" = (/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bGe" = (/turf/simulated/floor/plasteel,/area/hydroponics) -"bGf" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hydroponics) -"bGg" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/hydroponics) -"bGh" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bGi" = (/obj/item/seeds/wheatseed,/obj/item/seeds/sugarcaneseed,/obj/item/seeds/potatoseed,/obj/item/seeds/appleseed,/obj/item/weapon/grown/corncob,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Botany North"},/turf/simulated/floor/plasteel,/area/hydroponics) -"bGj" = (/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bGk" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bGl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bGm" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bGn" = (/obj/structure/table,/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"bGo" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; roundstart_move = "ferry_away"; travelDir = 180; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/space; width = 5},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bGp" = (/obj/machinery/door/airlock/external{name = "Transport Airlock"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) -"bGq" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/hallway/primary/starboard) -"bGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/storage/tools) -"bGs" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) -"bGt" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bGu" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/transport) -"bGv" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"bGw" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/transport) -"bGx" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/primary/starboard) -"bGy" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/space,/area/space) -"bGz" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bGA" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bGB" = (/turf/simulated/wall,/area/storage/testroom) -"bGC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/testroom) -"bGD" = (/obj/machinery/door/airlock/maintenance{name = "Terrarium Maintence"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/storage/testroom) -"bGE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/storage/testroom) -"bGF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Terrarium"},/turf/simulated/floor/plasteel,/area/storage/testroom) -"bGG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Terrarium"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/testroom) -"bGH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/testroom) -"bGI" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bGJ" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bGK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bGL" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bGM" = (/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bGN" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/space,/area/space) -"bGO" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plasteel/darkred,/area/space) -"bGP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bGQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/security/brig) -"bGR" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bGS" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bGT" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bGU" = (/obj/structure/table,/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/melee/baton/loaded,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/security/brig) -"bGV" = (/turf/simulated/floor/plasteel,/area/security/brig) -"bGW" = (/obj/machinery/atmospherics/components/unary/vent_pump,/turf/simulated/floor/plasteel,/area/security/brig) -"bGX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/security/brig) -"bGY" = (/obj/machinery/door/airlock/glass_security{name = "Gear Room"; req_access_txt = "0"; req_one_access_txt = "1;4"},/turf/simulated/floor/plasteel,/area/security/brig) -"bGZ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/rack,/obj/item/weapon/storage/box/firingpins,/obj/item/weapon/storage/box/firingpins{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bHa" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/wall,/area/janitor) -"bHb" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/tubes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bHc" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Janitor"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/janitor) -"bHd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/janitor) -"bHe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/janitor) -"bHf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/janitor) -"bHg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/janitor) -"bHh" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/janitor) -"bHj" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plating,/area/atmos) -"bHk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/atmos) -"bHl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plating,/area/atmos) -"bHm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"bHn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) -"bHo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/atmos) -"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) -"bHq" = (/turf/simulated/floor/plasteel/green/corner,/area/hydroponics) -"bHr" = (/turf/simulated/floor/plasteel/green/side,/area/hydroponics) -"bHs" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/hydroponics) -"bHt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 8; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/machinery/door/poddoor/shutters/preopen{id = "HydroShutters"; name = "Hydroponics Shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"; tag = "icon-whitehall (WEST)"},/area/hydroponics) -"bHu" = (/turf/simulated/floor/plasteel,/area/crew_quarters/bar) -"bHv" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/space) -"bHw" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) -"bHx" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plating/airless,/area/space) -"bHy" = (/obj/structure/transit_tube{tag = "icon-S-NW"; icon_state = "S-NW"},/turf/space,/area/space) -"bHz" = (/obj/structure/closet/radiation,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/toxins/explab) -"bHA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) -"bHB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) -"bHC" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fpmaint) -"bHD" = (/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) -"bHE" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics_cloning) -"bHF" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bHG" = (/obj/structure/table,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/storage/testroom) -"bHH" = (/turf/simulated/floor/plating,/area/storage/testroom) -"bHI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/storage/testroom) -"bHJ" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Terrarium APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/storage/testroom) -"bHK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/storage/testroom) -"bHL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/storage/testroom) -"bHM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) -"bHN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/testroom) -"bHO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) -"bHP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/storage/testroom) -"bHQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) -"bHR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/storage/testroom) -"bHS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/grass,/area/storage/testroom) -"bHT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/grass,/area/storage/testroom) -"bHU" = (/obj/machinery/camera{c_tag = "Terrarium North"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/grass,/area/storage/testroom) -"bHV" = (/turf/simulated/floor/grass,/area/storage/testroom) -"bHW" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 5},/area/space) -"bHX" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bHY" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bHZ" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bIa" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bIb" = (/obj/structure/closet/radiation,/turf/simulated/floor/plasteel/darkred,/area/space) -"bIc" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/brig) -"bId" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"bIe" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/brig) -"bIf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bIg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bIh" = (/obj/structure/table,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -28},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 7},/turf/simulated/floor/plasteel,/area/security/brig) -"bIi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/brig) -"bIj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/brig) -"bIk" = (/obj/structure/rack,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) -"bIl" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics Lounge"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/hallway/primary/central) -"bIm" = (/obj/machinery/status_display,/turf/simulated/wall,/area/hallway/primary/starboard) -"bIn" = (/obj/structure/table,/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; name = "Janitor RC"; pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/plasteel,/area/janitor) -"bIo" = (/turf/simulated/floor/plasteel,/area/janitor) -"bIp" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/janitor) -"bIq" = (/obj/structure/janitorialcart,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/janitor) -"bIr" = (/obj/machinery/light,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bIs" = (/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bIt" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/components/unary/vent_pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) -"bIu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"bIv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/atmos) -"bIw" = (/turf/simulated/floor/plating,/area/atmos) -"bIx" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/atmos) -"bIy" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/atmos) -"bIz" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) -"bIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/atmos) -"bIB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/atmos) -"bIC" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) -"bID" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"bIE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel,/area/hydroponics) -"bIF" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) -"bIG" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bIH" = (/turf/simulated/floor/plasteel/green,/area/hydroponics) -"bII" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) -"bIJ" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) -"bIK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bIL" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bIM" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/rack,/obj/item/weapon/storage/firstaid/o2,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"bIN" = (/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) -"bIO" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) -"bIP" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) -"bIQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) -"bIR" = (/obj/machinery/mineral/stacking_unit_console{dir = 2; machinedir = 8},/turf/simulated/wall,/area/maintenance/disposal) -"bIS" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/rack,/obj/item/weapon/storage/firstaid/o2,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bIT" = (/obj/structure/table,/obj/item/drone_shell,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/turf/simulated/floor/plasteel,/area/assembly/robotics) -"bIU" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 2},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) -"bIV" = (/obj/item/weapon/wrench,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) -"bIW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/storage/testroom) -"bIX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) -"bIY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating,/area/storage/testroom) -"bIZ" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = 1; on = 1},/turf/simulated/floor/plating,/area/storage/testroom) -"bJa" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 2; on = 1; tag = ""},/turf/simulated/floor/plating,/area/storage/testroom) -"bJb" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer,/turf/simulated/floor/plating,/area/storage/testroom) -"bJc" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plating,/area/storage/testroom) -"bJd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/storage/testroom) -"bJe" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/grass,/area/storage/testroom) -"bJf" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) -"bJg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/storage/testroom) -"bJh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bJi" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/storage/testroom) -"bJj" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bJk" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bJl" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/storage/auxillary) -"bJm" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel/darkred,/area/space) -"bJn" = (/obj/machinery/door/firedoor,/obj/machinery/flasher{id = "secentranceflasher"; pixel_x = -25},/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/brig) -"bJo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) -"bJp" = (/obj/machinery/door/firedoor,/obj/machinery/flasher{id = "secentranceflasher"; pixel_x = 25},/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/brig) -"bJq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/brig) -"bJr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/brig) -"bJs" = (/turf/simulated/wall,/area/security/main) -"bJt" = (/turf/simulated/floor/plasteel,/area/security/main) -"bJu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/main) -"bJv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) -"bJw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHWEST)"; icon_state = "blueyellow"; dir = 10},/area/hallway/primary/central) -"bJx" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/hallway/primary/central) -"bJy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/hallway/primary/central) -"bJz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/hallway/primary/central) -"bJA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/janitor) -"bJB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/janitor) -"bJC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) -"bJD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/wall/r_wall,/area/janitor) -"bJE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) -"bJF" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bJG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/aft) -"bJH" = (/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) -"bJI" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/hydroponics) -"bJJ" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) -"bJK" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) -"bJL" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (NORTH)"; icon_state = "greencorner"; dir = 1},/area/hydroponics) -"bJM" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHWEST)"; icon_state = "whiteyellow"; dir = 10},/area/medical/chemistry) -"bJN" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/button/door{id = "fumehood"; name = "Fume Hood Shutters"; pixel_x = 23; pixel_y = 0},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHEAST)"; icon_state = "whiteyellow"; dir = 6},/area/medical/chemistry) -"bJO" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/obj/machinery/door/firedoor,/turf/simulated/wall,/area/medical/morgue) -"bJP" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bJQ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bJR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) -"bJS" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) -"bJT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) -"bJU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plating,/area/storage/testroom) -"bJV" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) -"bJW" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = 2; on = 1},/turf/simulated/floor/plating,/area/storage/testroom) -"bJX" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/storage/testroom) -"bJY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) -"bJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) -"bKa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/storage/testroom) -"bKb" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/storage/testroom) -"bKc" = (/mob/living/simple_animal/chick,/turf/simulated/floor/grass,/area/storage/testroom) -"bKd" = (/obj/item/trash/plate,/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) -"bKe" = (/obj/item/weapon/storage/backpack/satchel_norm,/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) -"bKf" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/grass,/area/storage/testroom) -"bKg" = (/obj/structure/flora/kirbyplants,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bKh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Brig North"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/security/brig) -"bKi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) -"bKj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) -"bKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) -"bKl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) -"bKm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/security/brig) -"bKn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/main) -"bKo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bKp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bKq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/security/main) -"bKr" = (/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/security/main) -"bKs" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 1"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/brig) -"bKt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/light/small{dir = 1},/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Evidence Storage"; dir = 2; network = list("SS13")},/obj/item/weapon/storage/secure/safe{name = "evidence safe"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) -"bKu" = (/obj/structure/closet/secure_closet{anchored = 1; name = "Secure Evidence Closet"; req_access_txt = "0"; req_one_access_txt = "3,4"},/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase"; pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/brig) -"bKv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plating,/area/atmos) -"bKw" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/door/window/northleft{dir = 1; icon_state = "left"; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/atmos) -"bKx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/atmos) -"bKy" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"bKz" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/darkwarning,/area/atmos) -"bKA" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/darkwarning,/area/atmos) -"bKB" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/obj/item/clothing/suit/hooded/wintercoat/engineering/atmos,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkwarning,/area/atmos) -"bKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkwarning,/area/atmos) -"bKD" = (/obj/machinery/suit_storage_unit/atmos,/turf/simulated/floor/plasteel/darkwarning,/area/atmos) -"bKE" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel/darkwarning,/area/atmos) -"bKF" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bKG" = (/turf/simulated/floor/plasteel,/area/atmos) -"bKH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bKI" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmos North East"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel,/area/atmos) -"bKJ" = (/obj/machinery/camera{c_tag = "North Central Aft Hall"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) -"bKK" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; name = "Botany RC"; pixel_x = -31; pixel_y = -2},/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bKL" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel,/area/hydroponics) -"bKM" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hydroponics) -"bKN" = (/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0; pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/weapon/watertank,/obj/item/weapon/grenade/chem_grenade/antiweed,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bKO" = (/obj/structure/table/glass,/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/hydroponics) -"bKP" = (/obj/item/weapon/wrench,/obj/item/clothing/suit/apron,/obj/item/clothing/tie/armband/hydro,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) -"bKQ" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hydroponics) -"bKR" = (/obj/machinery/chem_master/condimaster{name = "BrewMaster 4000"; pixel_x = -4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hydroponics) -"bKS" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel,/area/hydroponics) -"bKT" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bKU" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bKV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/bar) -"bKW" = (/obj/machinery/power/apc{cell_type = 10000; dir = 4; name = "Command Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bKX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bKY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"bKZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) -"bLa" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"bLb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bLc" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"bLd" = (/turf/simulated/floor/plasteel/purple/corner,/area/hallway/secondary/entry) -"bLe" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/hallway/secondary/entry) -"bLf" = (/turf/simulated/wall,/area/crew_quarters/theatre) -"bLg" = (/obj/structure/table/wood,/obj/item/clothing/head/soft/mime,/obj/item/clothing/mask/gas/mime,/obj/item/clothing/shoes/sneakers/mime,/obj/item/clothing/under/rank/mime,/obj/item/device/pda/mime,/obj/item/weapon/cartridge/mime,/obj/item/weapon/storage/backpack/mime,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bLi" = (/obj/machinery/door/airlock/wood{name = "Stage Left"; req_access_txt = "46"},/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) -"bLj" = (/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bLk" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bLl" = (/obj/machinery/door/airlock/wood{name = "Stage Right"; req_access_txt = "46"},/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) -"bLm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bLn" = (/obj/structure/table/wood,/obj/item/clothing/mask/gas/clown_hat,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/under/rank/clown,/obj/item/device/pda/clown,/obj/item/weapon/cartridge/clown,/obj/item/weapon/storage/backpack/clown,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bLo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/storage/testroom) -"bLp" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = 3; on = 1},/turf/simulated/floor/plating,/area/storage/testroom) -"bLq" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/storage/testroom) -"bLr" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/turf/simulated/floor/plating,/area/storage/testroom) -"bLs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall,/area/storage/testroom) -"bLt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/grass,/area/storage/testroom) -"bLu" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/storage/testroom) -"bLv" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/storage/testroom) -"bLw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/grass,/area/storage/testroom) -"bLx" = (/obj/machinery/hydroponics/soil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/grass,/area/storage/testroom) -"bLy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) -"bLz" = (/obj/machinery/hydroponics/soil,/turf/simulated/floor/grass,/area/storage/testroom) -"bLA" = (/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) -"bLB" = (/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) -"bLC" = (/turf/simulated/floor/plasteel/purple/side,/area/hallway/secondary/entry) -"bLD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bLE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bLF" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bLG" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) -"bLH" = (/obj/machinery/camera{c_tag = "Brig Cell One"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/security/brig) -"bLI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/turf/simulated/floor/plating,/area/security/brig) -"bLJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bLK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) -"bLL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/security/brig) -"bLM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) -"bLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bLO" = (/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Officer's Quaters"; req_access_txt = "63"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) -"bLP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/security/main) -"bLQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/main) -"bLR" = (/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/main) -"bLS" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 2"},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/main) -"bLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bLU" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 5"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/security/brig) -"bLV" = (/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHWEST)"; icon_state = "blueyellow"; dir = 9},/area/atmos) -"bLW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) -"bLX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) -"bLY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) -"bLZ" = (/obj/machinery/computer/atmos_alert,/obj/machinery/camera{c_tag = "Atmospherics - Control Room"; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) -"bMa" = (/obj/machinery/computer/station_alert,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) -"bMb" = (/obj/structure/sign/atmosplaque{pixel_x = 0; pixel_y = 32},/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table,/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHEAST)"; icon_state = "blueyellow"; dir = 5},/area/atmos) -"bMc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"bMd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) -"bMe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6; initialize_directions = 6},/turf/simulated/floor/plasteel,/area/atmos) -"bMf" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bMg" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"bMh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bMi" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/simulated/floor/plasteel,/area/atmos) -"bMj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) -"bMk" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"bMl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/atmos) -"bMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/atmos) -"bMn" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel,/area/hydroponics) -"bMo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/corner,/area/hydroponics) -"bMp" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) -"bMq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/freezer.dmi'; name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bMr" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"bMs" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bMt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bMu" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMv" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMw" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwforce = 1; throwing = 1},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMx" = (/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMy" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMz" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bMB" = (/obj/machinery/camera{c_tag = "Escape North"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/exit) -"bMC" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/hallway/secondary/entry) -"bMD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Stage Left"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bME" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bMF" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bMG" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bMH" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bMI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bMJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Stage Right"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bMK" = (/obj/effect/spawner/lootdrop{loot = list(/obj/effect/decal/remains/xeno = 49, /obj/structure/alien/egg = 1); name = "2% chance xeno egg spawner"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"bML" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) -"bMM" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/storage/testroom) -"bMN" = (/mob/living/simple_animal/butterfly,/turf/simulated/floor/grass,/area/storage/testroom) -"bMO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/grass,/area/storage/testroom) -"bMP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) -"bMQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/storage/testroom) -"bMR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bMS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bMT" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/hallway/secondary/entry) -"bMU" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/hallway/secondary/entry) -"bMV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/security/brig) -"bMW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/security/brig) -"bMX" = (/obj/machinery/door/window/brigdoor{dir = 8; id = "Cell 1"; name = "Cell 1"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bMY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bMZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) -"bNa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/security/brig) -"bNb" = (/turf/simulated/floor/plasteel/red/corner,/area/security/brig) -"bNc" = (/turf/simulated/floor/plasteel/red/side,/area/security/brig) -"bNd" = (/obj/machinery/light,/turf/simulated/floor/plasteel/red/side,/area/security/brig) -"bNe" = (/obj/machinery/camera{c_tag = "Brig North East"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/brig) -"bNf" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/security/main) -"bNg" = (/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/security/main) -"bNh" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/main) -"bNi" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 4"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/brig) -"bNj" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; pixel_y = -2; 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" = "Waste Loop")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/atmos) -"bNk" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bNl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/atmos) -"bNm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/plasteel,/area/atmos) -"bNp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (EAST)"; icon_state = "blueyellow"; dir = 4},/area/atmos) -"bNq" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNr" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bNv" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) -"bNw" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bNx" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/simulated/floor/plasteel,/area/atmos) -"bNy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Air to Distro"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bNz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"; on = 0},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/atmos) -"bNA" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) -"bNB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/space,/area/space) -"bNC" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/atmos) -"bND" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "waste_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "mix vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"bNE" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"bNF" = (/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"bNG" = (/obj/machinery/shieldwallgen{req_access = list(55)},/obj/structure/cable,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"bNH" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hallway/primary/aft) -"bNI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hydroponics) -"bNJ" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/abandoned) -"bNK" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/hydroponics) -"bNL" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bNM" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/light_switch{pixel_x = 6; pixel_y = 26},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bNN" = (/obj/structure/rack,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Kitchen"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNQ" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/freezer.dmi'; name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bNS" = (/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bNT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bNU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bNV" = (/obj/structure/table/wood,/obj/item/clothing/glasses/monocle,/obj/item/clothing/head/fedora,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bNW" = (/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bNX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bNY" = (/obj/structure/table/wood,/obj/item/clothing/gloves/boxing,/obj/item/clothing/head/rabbitears,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bNZ" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/floor/plating,/area/storage/testroom) -"bOa" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/storage/testroom) -"bOb" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 2; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; pixel_x = 0; pixel_y = 0; target_pressure = 4500},/turf/simulated/floor/plating,/area/storage/testroom) -"bOc" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) -"bOd" = (/turf/simulated/wall,/area/crew_quarters/fitness) -"bOe" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/camera{c_tag = "Escape South"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bOf" = (/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bOg" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/carpet,/area/chapel/main) -"bOh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bOi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/wall/r_wall,/area/security/brig) -"bOj" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) -"bOk" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/brig) -"bOl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/brig) -"bOm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bOn" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) -"bOo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/corner,/area/security/brig) -"bOp" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/brig) -"bOq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/security/warden) -"bOr" = (/turf/simulated/wall,/area/security/warden) -"bOs" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/main) -"bOt" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 0},/turf/simulated/floor/plasteel,/area/security/main) -"bOu" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/main) -"bOv" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/security/main) -"bOw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bOx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = null; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bOy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bOz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bOA" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) -"bOB" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; pixel_y = -2; 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" = "Waste Loop")},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHWEST)"; icon_state = "blueyellow"; dir = 10},/area/atmos) -"bOC" = (/obj/structure/dispenser{pixel_x = -1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) -"bOD" = (/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) -"bOE" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) -"bOF" = (/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) -"bOG" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) -"bOH" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHEAST)"; icon_state = "blueyellow"; dir = 6},/area/atmos) -"bOI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) -"bOJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bOK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/atmos) -"bOL" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"bOM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"bON" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bOO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bOP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Distro"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bOQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bOR" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "waste_in"; name = "Gas Mix Tank Control"; output_tag = "waste_out"; sensors = list("waste_sensor" = "Tank")},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/atmos) -"bOS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/atmos) -"bOT" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "waste_sensor"; output = 63},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"bOU" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"bOV" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/abandoned) -"bOW" = (/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bOX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) -"bOY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bOZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bPa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) -"bPb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) -"bPc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bPd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPf" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPg" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPh" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; dir = 1; name = "Bar RC"; pixel_x = 0; pixel_y = -30},/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/obj/machinery/light,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPi" = (/obj/machinery/vending/boozeomat,/obj/machinery/camera{c_tag = "Bar"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPk" = (/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPm" = (/obj/machinery/door/window/southright{dir = 4; name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bPn" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"bPo" = (/obj/structure/table/wood,/obj/item/clothing/mask/pig,/obj/item/device/instrument/violin{pixel_x = -5},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bPp" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bPq" = (/obj/machinery/door/poddoor/shutters{id = "curtains"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bPr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bPs" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana,/obj/item/clothing/mask/horsehead,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bPt" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"bPu" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"bPv" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/storage/testroom) -"bPw" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1; icon_state = "mixer_off_f"; node1_concentration = 1; node2_concentration = 0; on = 1; tag = "icon-mixer_off_f (NORTH)"},/turf/simulated/floor/plating,/area/storage/testroom) -"bPx" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/fitness) -"bPy" = (/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bPz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Terrarium"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/storage/testroom) -"bPA" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/storage/testroom) -"bPB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bPC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bPD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bPE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bPF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bPG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (NORTH)"; icon_state = "greencorner"; dir = 1},/area/storage/testroom) -"bPH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/storage/testroom) -"bPI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) -"bPJ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/storage/testroom) -"bPK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/hallway/secondary/entry) -"bPM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/hallway/secondary/entry) -"bPN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/security/brig) -"bPO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/wall,/area/security/brig) -"bPP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bPQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) -"bPR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bPS" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bPT" = (/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 30},/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bPU" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/structure/closet/secure_closet/warden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bPV" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3; pixel_y = 5},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/security/main) -"bPW" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel,/area/security/main) -"bPX" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/main) -"bPY" = (/obj/machinery/syndicatebomb/training,/obj/structure/table,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/security/main) -"bPZ" = (/obj/structure/table,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHEAST)"; icon_state = "vault"; dir = 6},/area/security/main) -"bQa" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bQb" = (/obj/structure/filingcabinet/security{pixel_x = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHWEST)"; icon_state = "vault"; dir = 10},/area/security/brig) -"bQc" = (/obj/machinery/camera{c_tag = "Atmospherics - Port"; dir = 4; network = list("SS13")},/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) -"bQd" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) -"bQe" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) -"bQf" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bQg" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bQh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Pure to Mix"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bQi" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bQj" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/atmos) -"bQk" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) -"bQl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/space,/area/space) -"bQm" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "waste_in"; pixel_y = 1},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"bQn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) -"bQo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bQp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) -"bQq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) -"bQr" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/abandoned) -"bQs" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dheight = 0; dir = 2; dwidth = 11; height = 22; id = "whiteship"; name = "NT Medical Ship"; roundstart_move = "whiteship_away"; travelDir = 180; width = 35},/obj/docking_port/stationary{dir = 2; dwidth = 11; height = 22; id = "whiteship_home"; name = "SS13 Arrival Docking"; width = 35},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"bQt" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"bQu" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bQv" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bQw" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bQx" = (/obj/effect/landmark/start{name = "Cook"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bQy" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bQz" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar) -"bQA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/bar) -"bQB" = (/obj/structure/dresser,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) -"bQC" = (/turf/simulated/floor/carpet,/turf/simulated/floor/carpet{tag = "icon-1-w"; icon_state = "1-w"},/obj/machinery/flasher{id = "stageflash"; name = "Pyrotechnics"; pixel_y = 12},/turf/simulated/floor/carpet{tag = "icon-2-e"; icon_state = "2-e"},/area/crew_quarters/theatre) -"bQD" = (/turf/simulated/floor/carpet,/turf/simulated/floor/carpet{tag = "icon-1-w"; icon_state = "1-w"},/turf/simulated/floor/carpet{tag = "icon-2-e"; icon_state = "2-e"},/area/crew_quarters/theatre) -"bQE" = (/obj/structure/dresser,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) -"bQF" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/storage/testroom) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) -"bQH" = (/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) -"bQI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) -"bQJ" = (/turf/simulated/floor/plasteel/green/corner,/area/storage/testroom) -"bQK" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/storage/testroom) -"bQL" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bQM" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bQN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/secondary/entry) -"bQO" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/arrival) -"bQP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/exit) -"bQQ" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bQR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/security/brig) -"bQS" = (/obj/machinery/camera{c_tag = "Brig Cell two"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/brig) -"bQT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/brig) -"bQU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bQV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) -"bQW" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bQX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) -"bQY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bQZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bRa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bRb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) -"bRc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/security/main) -"bRd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) -"bRe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/security/main) -"bRf" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/main) -"bRg" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Air to Port"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bRh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Mix to Port"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bRi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Pure to Port"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bRj" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bRk" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bRl" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) -"bRm" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"bRn" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 2; name = "Kitchen Window"; req_access_txt = "28"; req_one_access_txt = "0"},/obj/machinery/door/firedoor,/obj/item/weapon/paper,/obj/machinery/door/window/eastleft{dir = 1; name = "Hydroponics Window"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/crew_quarters/kitchen) -"bRo" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRq" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRr" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/obj/structure/sign/directions/security{pixel_y = -8},/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_med (NORTH)"},/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) -"bRs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRt" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRu" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bRv" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bRw" = (/obj/machinery/gibber,/obj/machinery/camera{c_tag = "Cold Room"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bRx" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bRy" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bRz" = (/obj/structure/sign/directions{tag = "icon-direction_bridge (EAST)"; icon_state = "direction_bridge"; dir = 4},/obj/structure/sign/directions/science{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{dir = 4; icon_state = "direction_eng"; pixel_y = 8; tag = "icon-direction_eng (EAST)"},/turf/simulated/wall/r_wall,/area/hallway/primary/port) -"bRA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bRB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"bRC" = (/obj/structure/sign/directions{dir = 1; icon_state = "direction_bridge"; pixel_y = -8; tag = "icon-direction_bridge (NORTH)"},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bRD" = (/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) -"bRE" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bRF" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bRG" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bRH" = (/obj/machinery/door/airlock/wood{name = "Stage Right"; req_access_txt = "46"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) -"bRI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/theatre) -"bRJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"bRK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) -"bRL" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"bRM" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bRN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/security/brig) -"bRO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) -"bRP" = (/obj/machinery/door/window/brigdoor{dir = 8; id = "Cell 2"; name = "Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bRQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bRR" = (/obj/structure/table/reinforced,/obj/item/weapon/crowbar,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/weapon/wirecutters,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bRS" = (/obj/structure/rack,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bRT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bRU" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bRV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/warden) -"bRW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/main) -"bRX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bRY" = (/obj/structure/rack{pixel_y = 2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = 2; pixel_y = -2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = -3; pixel_y = 3},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Firing Range"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/security/main) -"bRZ" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/main) -"bSa" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bSb" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/brig) -"bSc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"bSd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"bSe" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) -"bSf" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"bSg" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bSh" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bSi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 5},/area/atmos) -"bSj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "nitrogen dioxide vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/n20,/area/atmos) -"bSk" = (/turf/simulated/floor/engine/n20,/area/atmos) -"bSl" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hydroponics) -"bSm" = (/obj/machinery/door/window/eastright{dir = 1; name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hydroponics) -"bSn" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/weapon/storage/backpack/satchel_hyd,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) -"bSo" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/weapon/storage/backpack/satchel_hyd,/obj/item/clothing/suit/hooded/wintercoat/hydro,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) -"bSp" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/machinery/light_switch{pixel_x = -26; pixel_y = 0},/obj/item/weapon/storage/backpack/satchel_hyd,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) -"bSq" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/machinery/camera{c_tag = "Botany South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/hydroponics) -"bSr" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel,/area/hydroponics) -"bSs" = (/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/cultivator,/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hydroponics) -"bSt" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/structure/cable,/obj/machinery/power/apc{cell_type = 2500; dir = 2; name = "Hydroponics APC"; pixel_y = -24},/turf/simulated/floor/plasteel,/area/hydroponics) -"bSu" = (/obj/structure/rack,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSy" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/processor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bSz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/kitchen) -"bSA" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bSB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Cook"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bSC" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bSD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bSE" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bSF" = (/obj/structure/sign/directions{dir = 1; icon_state = "direction_bridge"; pixel_y = -8; tag = "icon-direction_bridge (NORTH)"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"bSG" = (/obj/structure/sign/directions/science{tag = "icon-direction_sci (NORTH)"; icon_state = "direction_sci"; dir = 1},/obj/structure/sign/directions{dir = 1; icon_state = "direction_supply"; pixel_y = 8; tag = "icon-direction_supply (NORTH)"},/obj/structure/sign/directions/security{dir = 8; icon_state = "direction_sec"; pixel_y = -8; tag = "icon-direction_sec (WEST)"},/turf/simulated/wall,/area/hallway/primary/starboard) -"bSH" = (/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8},/obj/structure/sign/directions/medical{dir = 8; icon_state = "direction_med"; pixel_x = 0; pixel_y = -8; tag = "icon-direction_med (WEST)"},/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_y = 8; tag = "icon-direction_evac (NORTH)"},/turf/simulated/wall,/area/atmos) -"bSI" = (/obj/structure/sign/directions/science{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = 0; tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{pixel_y = -8},/obj/structure/sign/directions{dir = 4; icon_state = "direction_supply"; pixel_y = 8; tag = "icon-direction_supply (EAST)"},/turf/simulated/wall,/area/hydroponics) -"bSJ" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (EAST)"; icon_state = "propulsion_l"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"bSK" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{frequency = 1489; name = "Theater Speakers"; pixel_x = -30; pixel_y = 23},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSN" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{frequency = 1489; name = "Theater Speakers"; pixel_x = 30; pixel_y = 23},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/alarm{pixel_y = 23},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bSS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bST" = (/obj/machinery/camera{c_tag = "Terrarium East"; dir = 1},/turf/simulated/floor/grass,/area/storage/testroom) -"bSU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) -"bSV" = (/mob/living/simple_animal/cow{name = "Betsy"; real_name = "Betsy"},/turf/simulated/floor/grass,/area/storage/testroom) -"bSW" = (/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bSX" = (/turf/simulated/wall,/area/maintenance/apmaint) -"bSY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bSZ" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/space) -"bTa" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bTb" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bTc" = (/obj/structure/flora/kirbyplants{layer = 4.1},/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTd" = (/obj/machinery/light{dir = 1},/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/brig) -"bTf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bTg" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 4; name = "Brig Control Desk"; req_access_txt = "3"},/obj/item/weapon/paper,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/warden) -"bTh" = (/obj/effect/landmark/start{name = "Warden"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bTi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bTj" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bTk" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 8; name = "Brig Control Desk"; req_access_txt = "3"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/security/warden) -"bTl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/main) -"bTm" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) -"bTn" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/main) -"bTo" = (/obj/structure/table,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel,/area/security/main) -"bTp" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/main) -"bTq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security E.V.A. Storage"; req_access_txt = "3"},/turf/simulated/floor/plasteel,/area/security/main) -"bTr" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Security - EVA Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) -"bTs" = (/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) -"bTt" = (/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bTu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; frequency = 1443; id_tag = "air_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bTv" = (/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id = "mair_out_meter"; name = "Mixed Air Tank Out"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) -"bTw" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/space,/area/space) -"bTx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"bTy" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/white,/area/atmos) -"bTz" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) -"bTA" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bTB" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bTC" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 4},/area/atmos) -"bTD" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/turf/simulated/floor/engine/n20,/area/atmos) -"bTE" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/engine/n20,/area/atmos) -"bTF" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine/n20,/area/atmos) -"bTG" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/turf/simulated/floor/plating,/area/hydroponics) -"bTH" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bTI" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bTJ" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bTK" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/device/radio/intercom{pixel_y = -25},/obj/item/weapon/kitchen/rollingpin,/obj/machinery/camera{c_tag = "Kitchen"; dir = 1; network = list("SS13")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bTL" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bTM" = (/obj/machinery/food_cart,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bTN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bTO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bTP" = (/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/freezer.dmi'; name = "Kitchen Cold Room"; req_access_txt = "28"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bTQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bTR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bTS" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bTT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bTU" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "wood"},/area/crew_quarters/kitchen) -"bTV" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/abandoned) -"bTW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/corner,/area/hallway/secondary/exit) -"bTX" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/hallway/secondary/exit) -"bTY" = (/turf/simulated/floor/plasteel/purple/side,/area/hallway/secondary/exit) -"bTZ" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/abandoned) -"bUa" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"bUb" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"bUc" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"bUd" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) -"bUe" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"bUf" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f15"; icon_state = "swall_f15"},/area/shuttle/abandoned) -"bUg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bUh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bUi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bUj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bUk" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Fitness East"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bUl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Garden"},/turf/simulated/floor/plasteel,/area/storage/testroom) -"bUm" = (/obj/item/toy/beach_ball{desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen"; item_state = "beachball"; name = "NanoTrasen brand beach ball"; pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/grass,/area/storage/testroom) -"bUn" = (/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUo" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUt" = (/turf/simulated/wall/r_wall,/area/maintenance/apmaint) -"bUu" = (/turf/simulated/wall/r_wall,/area/security/processing) -"bUv" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "63"},/turf/simulated/floor/plating,/area/security/processing) -"bUw" = (/turf/simulated/wall/r_wall,/area/security/prison) -"bUx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bUy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/security/brig) -"bUz" = (/obj/structure/table,/obj/machinery/button/door{id = "Secure Gate"; name = "Brig Lockdown"; pixel_x = 6; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bUA" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bUB" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bUC" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bUD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/warden) -"bUE" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/radio/off,/turf/simulated/floor/plasteel,/area/security/main) -"bUF" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/secure/briefcase,/turf/simulated/floor/plasteel,/area/security/main) -"bUG" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel,/area/security/main) -"bUH" = (/turf/simulated/wall/r_wall,/area/security/main) -"bUI" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bUJ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bUK" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "air_sensor"; output = 7},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bUL" = (/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")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/white,/area/atmos) -"bUM" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plasteel,/area/atmos) -"bUN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/atmos) -"bUO" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/atmos) -"bUP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/atmos) -"bUQ" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = 4; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bUR" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/atmos) -"bUS" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/simulated/floor/engine/n20,/area/atmos) -"bUT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) -"bUU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/atmos) -"bUV" = (/turf/simulated/wall,/area/crew_quarters/locker) -"bUW" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bUX" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bUY" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bUZ" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/obj/machinery/camera{c_tag = "Dorms West"; dir = 2; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bVa" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bVb" = (/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bVc" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bVd" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Dorms Washroom"},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bVe" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 1; icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) -"bVf" = (/obj/structure/closet/crate{desc = "It's a storage unit for kitchen clothes and equipment."; name = "Kitchen Crate"},/obj/item/clothing/head/chefhat,/obj/item/clothing/under/rank/chef,/obj/item/weapon/storage/box/mousetraps{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/mousetraps,/obj/item/clothing/under/waiter,/obj/item/clothing/under/waiter,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bVg" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 1; icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) -"bVh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/icecream_vat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bVi" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bVj" = (/obj/machinery/door/airlock/wood{name = "Backstage"; req_access_txt = "46"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"bVk" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bVl" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/theatre) -"bVm" = (/obj/machinery/door/airlock/glass{name = "Theater"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) -"bVn" = (/obj/machinery/door/airlock/glass{name = "Theater"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) -"bVo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bVp" = (/obj/machinery/camera{c_tag = "Garden"; dir = 4; network = list("SS13")},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/obj/machinery/light_switch{pixel_y = 23},/turf/simulated/floor/plasteel,/area/storage/testroom) -"bVq" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/storage/testroom) -"bVr" = (/obj/item/seeds/appleseed,/obj/item/seeds/bananaseed,/obj/item/seeds/cocoapodseed,/obj/item/seeds/grapeseed,/obj/item/seeds/orangeseed,/obj/item/seeds/sugarcaneseed,/obj/item/seeds/wheatseed,/obj/item/seeds/watermelonseed,/obj/structure/table/glass,/obj/item/seeds/towermycelium,/turf/simulated/floor/plasteel,/area/storage/testroom) -"bVs" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/storage/testroom) -"bVt" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/storage/testroom) -"bVu" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bVv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bVw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bVx" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bVy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) -"bVz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/apmaint) -"bVA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/apmaint) -"bVB" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) -"bVC" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) -"bVD" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/camera{c_tag = "Prison Sanitatium"; dir = 4; network = list("SS13","Prison"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTHWEST)"; icon_state = "whitered"; dir = 9},/area/security/processing) -"bVE" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/processing) -"bVF" = (/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/processing) -"bVG" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = -5; pixel_y = 6},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/processing) -"bVH" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/prison) -"bVI" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/vending/wallmed{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTHEAST)"; icon_state = "whitered"; dir = 5},/area/security/prison) -"bVJ" = (/obj/machinery/camera{c_tag = "Brig Cell three"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/brig) -"bVK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bVL" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bVM" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Brig Control APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Warden's Office"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bVN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/security/main) -"bVO" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 8},/turf/simulated/floor/plasteel,/area/security/main) -"bVP" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bVQ" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bVR" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/main) -"bVS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bVT" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 7},/turf/simulated/floor/plasteel,/area/security/main) -"bVU" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "63"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/security/main) -"bVV" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plating,/area/security/main) -"bVW" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/security/main) -"bVX" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/security/brig) -"bVY" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bVZ" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"bWa" = (/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id = "mair_in_meter"; name = "Mixed Air Tank In"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) -"bWb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/white,/area/atmos) -"bWc" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/plasteel,/area/atmos) -"bWd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"bWe" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/plasteel,/area/atmos) -"bWf" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bWg" = (/obj/machinery/camera{c_tag = "South Central Aft Hall"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/aft) -"bWh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/locker) -"bWi" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWj" = (/obj/structure/table,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bWk" = (/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bWl" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bWm" = (/obj/structure/table/wood/poker,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWn" = (/obj/structure/table/wood/poker,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWo" = (/obj/item/toy/cards/deck,/obj/structure/table/wood/poker,/obj/machinery/camera{c_tag = "Dorms Central"},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWp" = (/obj/machinery/vending/snack,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWq" = (/obj/machinery/vending/clothing,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWr" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Dorms Central"; dir = 2; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWs" = (/obj/machinery/vending/sustenance,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWt" = (/obj/machinery/vending/assist,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bWu" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/crew_quarters/kitchen) -"bWv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/crew_quarters/kitchen) -"bWw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/kitchen) -"bWx" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bWy" = (/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bWz" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bWA" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bWB" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bWC" = (/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"bWD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/hallway/secondary/exit) -"bWE" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/hallway/secondary/exit) -"bWF" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"bWG" = (/obj/structure/piano,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"bWH" = (/obj/structure/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"bWI" = (/obj/machinery/camera{c_tag = "Theater Control"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"bWJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-l"; icon_state = "stairs-l"},/area/crew_quarters/fitness) -"bWK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-stairs-r"; icon_state = "stairs-r"},/area/crew_quarters/fitness) -"bWL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bWM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bWN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bWO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bWP" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bWQ" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"bWR" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/hallway/secondary/exit) -"bWS" = (/turf/simulated/floor/plasteel,/area/storage/testroom) -"bWT" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel,/area/storage/testroom) -"bWU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/grass,/area/storage/testroom) -"bWV" = (/obj/machinery/camera{c_tag = "Terrarium South"; dir = 1; network = list("SS13")},/turf/simulated/floor/grass,/area/storage/testroom) -"bWW" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/storage/testroom) -"bWX" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bWY" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"},/area/shuttle/labor) -"bWZ" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/space,/area/shuttle/labor) -"bXa" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"},/area/shuttle/labor) -"bXb" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel/black,/area/security/processing) -"bXc" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) -"bXd" = (/obj/machinery/computer/shuttle/labor,/turf/simulated/floor/plasteel/black,/area/security/processing) -"bXe" = (/turf/simulated/floor/plasteel{tag = "icon-whitered (WEST)"; icon_state = "whitered"; dir = 8},/area/security/processing) -"bXf" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/processing) -"bXg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/processing) -"bXh" = (/obj/machinery/atmospherics/components/unary/vent_pump,/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/prison) -"bXi" = (/turf/simulated/floor/plasteel{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/security/prison) -"bXj" = (/obj/machinery/door/window/brigdoor{dir = 8; id = "Cell 3"; name = "Cell 3"; req_access_txt = "2"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bXk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bXl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/security/brig) -"bXm" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/security/warden) -"bXn" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bXo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bXp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/main) -"bXq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/security/main) -"bXr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) -"bXs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/main) -"bXt" = (/obj/machinery/power/apc{dir = 8; name = "Security Office APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plating,/area/security/main) -"bXu" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/security/main) -"bXv" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/brig) -"bXw" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) -"bXx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/atmos) -"bXy" = (/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plasteel,/area/atmos) -"bXz" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/atmos) -"bXA" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/atmos) -"bXB" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"bXC" = (/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/atmos) -"bXD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "plasma vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bXE" = (/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bXF" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bXG" = (/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/janitor) -"bXH" = (/obj/effect/decal/cleanable/oil/streak,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bXI" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bXJ" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bXK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bXL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bXM" = (/obj/machinery/computer/arcade,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bXN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/locker) -"bXO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bXP" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"bXQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bXR" = (/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bXS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bXT" = (/obj/structure/bed/chair/wood/normal{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) -"bXU" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bXV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bXW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bXX" = (/obj/structure/disposalpipe/sortjunction{sortType = 18},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bXY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bXZ" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bYa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bYb" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bYc" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bYd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/hallway/secondary/exit) -"bYe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/butterfly,/turf/simulated/floor/grass,/area/storage/testroom) -"bYf" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bYg" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bYh" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/shuttle/labor) -"bYi" = (/obj/machinery/computer/shuttle/labor,/obj/structure/reagent_dispensers/peppertank{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) -"bYj" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) -"bYk" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) -"bYl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/processing) -"bYm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/processing) -"bYn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/security/processing) -"bYo" = (/obj/machinery/computer/security{name = "Labor Camp Monitoring"; network = list("Labor")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) -"bYp" = (/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-whitered (SOUTHWEST)"; icon_state = "whitered"; dir = 10},/area/security/processing) -"bYq" = (/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/processing) -"bYr" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/processing) -"bYs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/processing) -"bYt" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/prison) -"bYu" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{tag = "icon-whitered (SOUTHEAST)"; icon_state = "whitered"; dir = 6},/area/security/prison) -"bYv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/brig) -"bYw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/security/brig) -"bYx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/brig) -"bYy" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"bYz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel,/area/security/main) -"bYA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/security/main) -"bYB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/security/main) -"bYC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/main) -"bYD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/main) -"bYE" = (/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"bYF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; frequency = 1441; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "nitrogen vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"bYG" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) -"bYH" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/atmos) -"bYI" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bYJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 Outlet Pump"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bYK" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bYL" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "tox_in"; name = "Toxin Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/atmos) -"bYM" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"; output = 11},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bYN" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bYO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bYP" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/neutral,/area/atmos) -"bYQ" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/hallway/secondary/exit) -"bYR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"bYS" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/crew_quarters/locker) -"bYT" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bYU" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bYV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bYW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bYX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bYY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bYZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"bZa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/crew_quarters/locker) -"bZb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/locker) -"bZc" = (/obj/machinery/door/airlock{id_tag = "Cabin3"; name = "Cabin 3"},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"bZd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker) -"bZe" = (/obj/machinery/door/airlock{id_tag = "Cabin4"; name = "Cabin 4"},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"bZf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Fitness West"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bZg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bZh" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"bZj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-redgreen"; icon_state = "redgreen"},/area/crew_quarters/fitness) -"bZk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-redgreenfull"; icon_state = "redgreenfull"},/area/crew_quarters/fitness) -"bZl" = (/turf/simulated/wall,/area/maintenance/asmaint) -"bZm" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/secondary/exit) -"bZn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bZo" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/pipe_dispenser,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bZp" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bZq" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bZr" = (/obj/structure/grille,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bZs" = (/obj/structure/grille,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/window/shuttle,/turf/space,/area/shuttle/labor) -"bZt" = (/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) -"bZu" = (/obj/machinery/mineral/labor_claim_console{machinedir = 2; pixel_x = 30; pixel_y = 30},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) -"bZv" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/space,/area/shuttle/labor) -"bZw" = (/obj/machinery/door/airlock/external{name = "Security Escape Airlock"; req_access_txt = "2"},/turf/simulated/floor/plating,/area/security/processing) -"bZx" = (/turf/simulated/floor/plating,/area/security/processing) -"bZy" = (/turf/simulated/floor/plasteel/black,/area/security/processing) -"bZz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) -"bZA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Insanity Ward"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/processing) -"bZB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/security/prison) -"bZC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) -"bZD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/brig) -"bZE" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) -"bZF" = (/turf/simulated/wall/r_wall,/area/security/warden) -"bZG" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/escape) -"bZH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) -"bZI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) -"bZJ" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_access = null; req_access_txt = "58"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/security/main) -"bZK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/aft) -"bZL" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"bZM" = (/turf/simulated/wall/r_wall,/area/maintenance/aft) -"bZN" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"bZO" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"bZP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/atmos) -"bZQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/atmos) -"bZR" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bZS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/atmos) -"bZT" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"bZU" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bZV" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/atmos) -"bZW" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bZX" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel/neutral,/area/atmos) -"bZY" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"bZZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"caa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cab" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) -"cac" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"cad" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"cae" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"caf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) -"cag" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/locker) -"cah" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"cai" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) -"caj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/locker) -"cak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Dorms Washroom Exteriror"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"cal" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"cam" = (/obj/effect/decal/cleanable/oil/streak,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"can" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cao" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cap" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"caq" = (/obj/structure/bed/stool,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"car" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"cas" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"cat" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cau" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cav" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"caw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cax" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cay" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-redgreen (WEST)"; icon_state = "redgreen"; dir = 8},/area/crew_quarters/fitness) -"caz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"caA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"caB" = (/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"caC" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caD" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caF" = (/obj/structure/rack,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caG" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt{desc = "Can hold quite a lot of stuff."; name = "mutli-belt"},/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caH" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"caI" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/shuttle/labor) -"caJ" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/shuttle/labor) -"caK" = (/obj/machinery/mineral/stacking_machine/laborstacker{input_dir = 2; output_dir = 1},/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/shuttle/labor) -"caL" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"},/area/shuttle/labor) -"caM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Gulag Shuttle Dock"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/security/processing) -"caN" = (/obj/machinery/power/apc{dir = 2; name = "Labor Shuttle Dock APC"; pixel_y = -24},/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/security/processing) -"caO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{id_tag = "laborexit"; name = "Labor Shuttle"; req_access = null; req_access_txt = "63"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/processing) -"caP" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/processing) -"caQ" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caR" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caS" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Prisoner Transfer"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caT" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caU" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caV" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caW" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caX" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caY" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"caZ" = (/obj/structure/rack,/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/machinery/power/apc{dir = 4; name = "Prison Wing APC"; pixel_x = 24},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light_switch{pixel_x = 23; pixel_y = -10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/processing) -"cba" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/prison) -"cbb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/prison) -"cbc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/prison) -"cbd" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/prison) -"cbe" = (/turf/simulated/wall/r_wall,/area/ai_monitored/security/armory) -"cbf" = (/obj/machinery/deployable/barrier,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) -"cbg" = (/obj/machinery/deployable/barrier,/obj/machinery/alarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cbh" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/space) -"cbi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) -"cbj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/hos) -"cbk" = (/obj/structure/bed/chair,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) -"cbl" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) -"cbm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) -"cbn" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/wood,/area/security/hos) -"cbo" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/wood,/area/security/hos) -"cbp" = (/turf/simulated/wall/r_wall,/area/security/hos) -"cbq" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"cbr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "n2_in"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"cbs" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) -"cbt" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/atmos) -"cbu" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 2; filter_type = 2; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"cbv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel,/area/atmos) -"cbw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"cbx" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"cby" = (/obj/machinery/atmospherics/pipe/manifold4w/general/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"cbz" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"cbA" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"cbB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cbC" = (/obj/structure/closet/crate,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cbD" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cbE" = (/obj/structure/bed/stool{pixel_y = 8},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cbF" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/clothing/mask/balaclava{pixel_x = -8; pixel_y = 8},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cbG" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cbH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cbI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cbJ" = (/obj/structure/table,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cbK" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) -"cbL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"cbM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"cbN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) -"cbO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) -"cbP" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"cbQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/fitness) -"cbR" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cbS" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cbT" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cbU" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cbV" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cbW" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cbX" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cbY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cbZ" = (/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cca" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) -"ccb" = (/obj/machinery/mineral/labor_claim_console{machinedir = 1; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) -"ccc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/processing) -"ccd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/processing) -"cce" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) -"ccf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/processing) -"ccg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) -"cch" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/black,/area/security/processing) -"cci" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) -"ccj" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/processing) -"cck" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"ccl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/prison) -"ccm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/security/prison) -"ccn" = (/obj/machinery/camera{c_tag = "Brig South"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/prison) -"cco" = (/obj/machinery/deployable/barrier,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/camera{c_tag = "Security - Secure Gear Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) -"ccp" = (/obj/machinery/deployable/barrier,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"ccq" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"ccr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) -"ccs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/hos) -"cct" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = -23; pixel_y = -23},/turf/simulated/floor/wood,/area/security/hos) -"ccu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) -"ccv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood,/area/security/hos) -"ccw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/security/hos) -"ccx" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/wood,/area/security/hos) -"ccy" = (/turf/simulated/wall,/area/maintenance/aft) -"ccz" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"ccA" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) -"ccB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) -"ccC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) -"ccD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/atmos) -"ccE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "carbon dioxide vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"ccF" = (/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"ccG" = (/turf/simulated/wall/r_wall,/area/crew_quarters/locker) -"ccH" = (/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"ccI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"ccJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"ccK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"ccL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"ccM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) -"ccN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"ccO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/crew_quarters/fitness) -"ccP" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"ccQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"ccR" = (/obj/structure/table,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"ccS" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ccT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ccU" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccV" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccW" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) -"ccX" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/flasher{id = "gulagshuttleflasher"; pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) -"ccY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/processing) -"ccZ" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) -"cda" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/processing) -"cdb" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) -"cdc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/prison) -"cdd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/security/prison) -"cde" = (/turf/simulated/floor/plasteel/black,/area/security/prison) -"cdf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cdg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cdh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/prison) -"cdi" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/security/prison) -"cdj" = (/obj/machinery/power/apc{cell_type = 10000; dir = 2; name = "Brig APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/red/side,/area/security/prison) -"cdk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/prison) -"cdl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/security/armory) -"cdm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cdn" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cdo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cdp" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) -"cdq" = (/obj/machinery/computer/prisoner,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/security/hos) -"cdr" = (/obj/machinery/computer/security,/turf/simulated/floor/carpet,/area/security/hos) -"cds" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 0},/obj/item/device/radio/off{pixel_x = 0; pixel_y = 3},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/security/hos) -"cdt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/wood,/area/security/hos) -"cdu" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 29},/obj/machinery/suit_storage_unit/hos,/turf/simulated/floor/wood,/area/security/hos) -"cdv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/aft) -"cdw" = (/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"cdx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; frequency = 1441; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "oxygen vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"cdy" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/atmos) -"cdz" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "O2 Outlet Pump"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"cdA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cdB" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cdC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel,/area/atmos) -"cdD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Port to Distro"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"cdE" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cdF" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/atmos) -"cdG" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"; output = 35},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"cdH" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"cdI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"cdJ" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) -"cdK" = (/turf/simulated/wall/r_wall,/area/storage/tech) -"cdL" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/storage/tech) -"cdM" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) -"cdN" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = 26},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "Tech Storage"},/turf/simulated/floor/plating,/area/storage/tech) -"cdO" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"cdP" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/storage/tech) -"cdQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/tech) -"cdR" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cdS" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cdT" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cdU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker) -"cdV" = (/obj/effect/decal/cleanable/oil/streak,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cdW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cdX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cdY" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cdZ" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cea" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"ceb" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cec" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"ced" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cee" = (/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cef" = (/obj/machinery/door/airlock{id_tag = "Toilet3"; name = "Unit 3"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"ceg" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"ceh" = (/obj/structure/bedsheetbin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cei" = (/obj/machinery/camera{c_tag = "Dorms East"; dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cej" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cek" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cel" = (/obj/structure/closet/crate/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cem" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "Store"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cen" = (/obj/structure/table,/obj/machinery/door/poddoor/shutters/preopen{id = "Store"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"ceo" = (/obj/structure/windoor_assembly,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "Store"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cep" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/device/radio/intercom{pixel_x = -30},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"ceq" = (/turf/simulated/floor/plasteel{tag = "icon-redblue (EAST)"; icon_state = "redblue"; dir = 4},/area/crew_quarters/fitness) -"cer" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"ces" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cet" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"ceu" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) -"cev" = (/obj/machinery/door/airlock/shuttle{id_tag = "prisonshuttle"; name = "Labor Shuttle Airlock"},/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 5; id = "laborcamp"; name = "labor camp shuttle"; travelDir = 90; width = 9},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; width = 9},/turf/space,/area/shuttle/labor) -"cew" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/processing) -"cex" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) -"cey" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/darkred/corner,/area/security/processing) -"cez" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/darkred/side,/area/security/processing) -"ceA" = (/obj/machinery/power/apc{cell_type = 10000; dir = 2; name = "Brig APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkred/side,/area/security/processing) -"ceB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"ceC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"ceD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"ceE" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"ceF" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"ceG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"ceH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/prison) -"ceI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/ai_monitored/security/armory) -"ceJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_access = null; req_access_txt = "3"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/security/armory) -"ceK" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/simulated/floor/carpet,/area/security/hos) -"ceL" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor/carpet,/area/security/hos) -"ceM" = (/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in."; pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/security/hos) -"ceN" = (/turf/simulated/floor/wood,/area/security/hos) -"ceO" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{pixel_x = -2},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/cartridge/detective,/turf/simulated/floor/wood,/area/security/hos) -"ceP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"ceQ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"ceR" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"ceS" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 8},/area/atmos) -"ceT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/atmos) -"ceU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"ceV" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = 3; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"ceW" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/atmos) -"ceX" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "co2_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"ceY" = (/turf/simulated/wall/r_wall,/area/hallway/primary/aft) -"ceZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/hallway/primary/aft) -"cfa" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"cfb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"cfc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/aft) -"cfd" = (/obj/machinery/door/airlock/highsecurity{name = "Tech Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/storage/tech) -"cfe" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"cff" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"cfg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/storage/tech) -"cfh" = (/turf/simulated/floor/plating,/area/storage/tech) -"cfi" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"cfj" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) -"cfk" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/storage/tech) -"cfl" = (/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cfm" = (/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cfn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cfo" = (/obj/machinery/door/airlock{id_tag = "Cabin1"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cfp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"cfq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cfr" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cfs" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cft" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cfu" = (/obj/machinery/power/apc{dir = 4; name = "Locker Restrooms APC"; pixel_x = 27; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cfv" = (/obj/machinery/door/airlock{id_tag = "Cabin5"; name = "Cabin 5"},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cfw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/locker) -"cfx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/locker) -"cfy" = (/obj/machinery/door/airlock{id_tag = "Cabin6"; name = "Cabin 6"},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cfz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cfA" = (/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cfB" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"cfC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cfD" = (/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/fitness) -"cfE" = (/turf/simulated/floor/plasteel{tag = "icon-redblue (NORTH)"; icon_state = "redblue"; dir = 1},/area/crew_quarters/fitness) -"cfF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cfG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/asmaint) -"cfH" = (/obj/structure/closet/crate/hydroponics,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cfI" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cfJ" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) -"cfK" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/processing) -"cfL" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/processing) -"cfM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/processing) -"cfN" = (/turf/simulated/wall,/area/security/prison) -"cfO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/prison) -"cfP" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3"; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cfQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/security/prison) -"cfR" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cfS" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cfT" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/projectile/automatic/pistol = 5, /obj/item/weapon/gun/projectile/revolver/mateba, /obj/item/weapon/gun/projectile/automatic/pistol/deagle, /obj/item/weapon/storage/box/throwing_stars = 3)},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cfU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cfV" = (/obj/machinery/light_switch{pixel_y = 23},/obj/machinery/camera/motion{c_tag = "Armory"; dir = 2; network = list("MiniSat")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cfW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cfX" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 29},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) -"cfY" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/hos) -"cfZ" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = -32},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 10},/obj/machinery/power/apc{dir = 8; name = "Head of Security's Office APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/carpet,/area/security/hos) -"cga" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet,/area/security/hos) -"cgb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/camera{c_tag = "Head of Security"; dir = 1},/turf/simulated/floor/carpet,/area/security/hos) -"cgc" = (/obj/structure/table/wood,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/computer/med_data/laptop,/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 36; pixel_y = 28},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/wood,/area/security/hos) -"cgd" = (/obj/structure/rack,/obj/item/clothing/tie/stethoscope,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"cge" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"cgf" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "o2_in"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"cgg" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 10},/area/atmos) -"cgh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cgi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"cgj" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cgk" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) -"cgl" = (/obj/machinery/light{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/plasteel,/area/atmos) -"cgm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "caution"},/area/hallway/primary/aft) -"cgn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/hallway/primary/aft) -"cgo" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/hallway/primary/aft) -"cgp" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/aft) -"cgq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"cgr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/aft) -"cgs" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/med_data{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/clonescanner,/obj/item/weapon/circuitboard/clonepod,/obj/item/weapon/circuitboard/scan_consolenew,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"cgt" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/security{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plating,/area/storage/tech) -"cgu" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/stationalert{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) -"cgv" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plating,/area/storage/tech) -"cgw" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) -"cgx" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"cgy" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cgz" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cgA" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cgB" = (/obj/machinery/door/airlock{id_tag = "Toilet2"; name = "Unit 2"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"cgC" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cgD" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cgE" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"cgF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cgG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cgH" = (/obj/item/stack/sheet/cardboard,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgI" = (/obj/structure/closet/lasertag/blue,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgJ" = (/obj/structure/closet/lasertag/red,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgK" = (/obj/structure/closet/boxinggloves,/obj/machinery/light{dir = 2},/obj/item/clothing/shoes/jackboots,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgL" = (/obj/machinery/camera{c_tag = "Fitness Room"; dir = 1},/obj/structure/closet/masks,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cgO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cgP" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cgQ" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/asmaint) -"cgS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/maintenance/asmaint) -"cgT" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/apmaint) -"cgU" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"},/area/shuttle/labor) -"cgV" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/labor) -"cgW" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"},/area/shuttle/labor) -"cgX" = (/turf/simulated/wall/r_wall,/area/security/transfer) -"cgY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; id_tag = "prisonereducation"; name = "Prisoner Education Chamber"; req_access = null; req_access_txt = "3"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/transfer) -"cgZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/security/transfer) -"cha" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 3"; network = list("SS13","Prison")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chb" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chc" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chd" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("SS13","Prison")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"che" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chf" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/security/prison) -"chg" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1"; network = list("SS13","Prison")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chi" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/structure/closet/ammunitionlocker,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"chk" = (/obj/machinery/bot/secbot{health = 35; name = "Officer Bopsky"; on = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"chl" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"chm" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) -"chn" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel{tag = "icon-darkredfull"; icon_state = "darkredfull"},/area/atmos) -"cho" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) -"chp" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) -"chq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/atmos) -"chr" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) -"chs" = (/obj/machinery/space_heater,/turf/simulated/floor/plasteel,/area/atmos) -"cht" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/abandoned) -"chu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"chv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"chw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"chx" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Aft Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/aft) -"chy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/storage/tech) -"chz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) -"chA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"chB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating,/area/storage/tech) -"chC" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/storage/tech) -"chD" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/mecha_control{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/storage/tech) -"chE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"chF" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/crew_quarters/locker) -"chG" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/wood,/area/crew_quarters/locker) -"chH" = (/obj/structure/table,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"chI" = (/obj/structure/table,/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"chJ" = (/obj/structure/closet,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"chK" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"chL" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"chM" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"chN" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"chO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint) -"chP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/corner,/area/security/transfer) -"chQ" = (/obj/structure/closet/secure_closet/injection{name = "educational injections"; pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/transfer) -"chR" = (/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/security/prison) -"chS" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chT" = (/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chU" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"chW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"chX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"chY" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/item/weapon/storage/lockbox/loyalty,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"chZ" = (/obj/structure/closet/crate,/obj/item/weapon/storage/belt/utility,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"cia" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/atmos) -"cib" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmost South West"; dir = 1; network = list("SS13")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/atmos) -"cic" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel{tag = "icon-darkredfull"; icon_state = "darkredfull"},/area/atmos) -"cid" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/atmos) -"cie" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/simulated/floor/plasteel,/area/atmos) -"cif" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel,/area/atmos) -"cig" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel,/area/atmos) -"cih" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"cii" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/atmos) -"cij" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/atmos) -"cik" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Space"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"cil" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) -"cim" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1443; id = "air_in"},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) -"cin" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/hallway/primary/aft) -"cio" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/hallway/primary/aft) -"cip" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/hallway/primary/aft) -"ciq" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/hallway/primary/aft) -"cir" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/hallway/primary/aft) -"cis" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/storage/tech) -"cit" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/pandemic{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/rdserver{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe,/obj/item/weapon/circuitboard/aifixer,/obj/item/weapon/circuitboard/teleporter,/turf/simulated/floor/plating,/area/storage/tech) -"ciu" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/mining,/obj/item/weapon/circuitboard/autolathe{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/arcade/battle,/turf/simulated/floor/plating,/area/storage/tech) -"civ" = (/obj/structure/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/message_monitor{pixel_y = -5},/turf/simulated/floor/plating,/area/storage/tech) -"ciw" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) -"cix" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/storage/tech) -"ciy" = (/obj/machinery/door/airlock{id_tag = "Cabin2"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/locker) -"ciz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) -"ciA" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Dorms Central South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/crew_quarters/locker) -"ciB" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"ciC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"ciD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"ciE" = (/obj/machinery/door/airlock{id_tag = "Toilet1"; name = "Unit 1"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"ciF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ciG" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint) -"ciH" = (/obj/item/weapon/vending_refill/cigarette,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint) -"ciI" = (/obj/item/weapon/vending_refill/cola,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint) -"ciJ" = (/obj/item/weapon/vending_refill/snack,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint) -"ciK" = (/obj/machinery/power/apc{dir = 1; name = "Fitness APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"ciL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"ciM" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"ciN" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"ciO" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ciP" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ciQ" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ciR" = (/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ciS" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/security/transfer) -"ciT" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/security/transfer) -"ciU" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/security/transfer) -"ciV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/security/transfer) -"ciW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"ciX" = (/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"ciY" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell3"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"ciZ" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell2"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cja" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell1"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cjb" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cjc" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cjd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cje" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/teargas,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cjf" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cjg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/aft) -"cjh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/atmos) -"cji" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cjj" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/atmos) -"cjk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/atmos) -"cjl" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"cjm" = (/turf/simulated/wall/r_wall,/area/engine/break_room) -"cjn" = (/obj/machinery/door/airlock/glass{name = "Engineering Corridor"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/engine/break_room) -"cjo" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/engine/engineering) -"cjp" = (/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cjq" = (/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,/area/engine/engineering) -"cjr" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/engineering) -"cjs" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/crew_quarters/locker) -"cjt" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/locker) -"cju" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/crew_quarters/locker) -"cjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/locker) -"cjw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"cjx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjA" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint) -"cjC" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"cjF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"cjG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"cjH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"cjI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"cjJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cjL" = (/obj/item/weapon/stock_parts/cell,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjM" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/security/transfer) -"cjN" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/turf/simulated/floor/plating,/area/security/transfer) -"cjO" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "executionburn"; luminosity = 2; on = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/security/transfer) -"cjP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/transfer) -"cjR" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/transfer) -"cjS" = (/turf/simulated/floor/plasteel,/area/security/prison) -"cjT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/prison) -"cjU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/security/prison) -"cjV" = (/obj/machinery/light_switch{pixel_y = 23},/turf/simulated/floor/plasteel,/area/security/prison) -"cjW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/prison) -"cjX" = (/obj/machinery/light/small{dir = 4},/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) -"cjY" = (/obj/structure/rack,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cjZ" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"cka" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Armory APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"ckb" = (/obj/machinery/alarm{dir = 1; pixel_y = -28},/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle,/obj/item/clothing/suit/armor/laserproof,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"ckc" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) -"ckd" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/aft) -"cke" = (/obj/structure/table,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/aft) -"ckf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft) -"ckg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"ckh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"cki" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"ckj" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"ckk" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"ckl" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) -"ckm" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHWEST)"; icon_state = "blueyellow"; dir = 9},/area/engine/break_room) -"ckn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"cko" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckq" = (/obj/machinery/vending/cigarette{pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"cks" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Canister Storage"},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"cku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair,/obj/machinery/alarm{dir = 2; icon_state = "alarm0"; pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/table,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) -"ckx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHEAST)"; icon_state = "blueyellow"; dir = 5},/area/engine/break_room) -"cky" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Engineering Cutthrough"; dir = 2; network = list("MINE")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckF" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckG" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"ckH" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/engine/break_room) -"ckI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/radiation,/turf/simulated/floor/plasteel,/area/engine/engineering) -"ckJ" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"ckK" = (/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"ckL" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security Post RC"; pixel_x = -32; pixel_y = 0},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/security/checkpoint/engineering) -"ckM" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/checkpoint/engineering) -"ckN" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/security/checkpoint/engineering) -"ckO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/components/binary/valve/open,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckS" = (/obj/machinery/power/apc{dir = 1; name = "Dormitory APC"; pixel_y = 24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/binary/valve/open,/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 4},/turf/simulated/floor/plating,/area/crew_quarters/locker) -"ckT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ckZ" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cla" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"clb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"clc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cle" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"clf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"clg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"clh" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/starboardsolar) -"clj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"clk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"cll" = (/obj/machinery/cell_charger,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clm" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/security/transfer) -"cln" = (/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/security/transfer) -"clo" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"clp" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"clq" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"clr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred,/area/security/transfer) -"cls" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5; pixel_y = 1},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle"; pixel_x = -3; pixel_y = 6},/obj/item/weapon/reagent_containers/syringe{pixel_y = 5},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/transfer) -"clt" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/prison) -"clu" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"clv" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"clw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"clx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"clz" = (/obj/machinery/door/airlock{name = "Unisex Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) -"clA" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/item/weapon/soap,/turf/simulated/floor/plasteel/freezer,/area/security/prison) -"clB" = (/turf/simulated/floor/plating,/area/maintenance/aft) -"clC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/aft) -"clD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"clE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft) -"clF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft) -"clH" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clI" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clJ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clK" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clL" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clM" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"clN" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/engine/break_room) -"clO" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clP" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clQ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clR" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clS" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clT" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 6},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clU" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clV" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clW" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 5},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/break_room) -"clY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/break_room) -"clZ" = (/turf/simulated/floor/plasteel,/area/engine/break_room) -"cma" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/break_room) -"cmb" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cmc" = (/turf/simulated/floor/plasteel,/area/engine/engineering) -"cmd" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) -"cme" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/engineering) -"cmf" = (/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) -"cmg" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) -"cmh" = (/obj/machinery/camera{c_tag = "Security Post - Engineering"; dir = 8; network = list("SS13")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/engineering) -"cmi" = (/obj/machinery/computer/pod{id = "oldship_gun"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cmj" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plasteel/black,/area/security/brig) -"cmk" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/turf/simulated/floor/plasteel/black,/area/security/brig) -"cml" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/security/brig) -"cmm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/maintenance/asmaint) -"cmn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmo" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmr" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cms" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8; initialize_directions = 6},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmx" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmy" = (/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmz" = (/obj/structure/bed/stool{pixel_y = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmA" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cmB" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cmC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cmD" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cmE" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cmF" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/space,/area/solar/starboard) -"cmG" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/starboard) -"cmH" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"cmI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint) -"cmJ" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/maintenance/asmaint) -"cmK" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cmL" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/black,/area/security/brig) -"cmM" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/brig) -"cmN" = (/obj/structure/sink/kitchen{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"cmO" = (/obj/item/stack/sheet/metal{amount = 50; pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmP" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmQ" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmS" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/structure/reagent_dispensers/peppertank{pixel_x = 29; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/transfer) -"cmT" = (/obj/machinery/camera{c_tag = "Perma West"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/security/prison) -"cmU" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cmV" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/prison) -"cmW" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/plasteel,/area/security/prison) -"cmX" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/prison) -"cmY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/prison) -"cmZ" = (/obj/machinery/computer/arcade,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cna" = (/obj/item/device/radio,/turf/simulated/floor/plating,/area/maintenance/aft) -"cnb" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"cnc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"cnd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/aft) -"cne" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/aft) -"cnf" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) -"cng" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/aft) -"cnh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/aft) -"cni" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"cnj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/aft) -"cnk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHWEST)"; icon_state = "blueyellow"; dir = 10},/area/engine/break_room) -"cnl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/engine/break_room) -"cnm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/engine/break_room) -"cnn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/break_room) -"cno" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/break_room) -"cnp" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/engine/break_room) -"cnq" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cnr" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cns" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cnt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cnu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cnv" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cnw" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cnx" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) -"cny" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/break_room) -"cnz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel/black,/area/security/brig) -"cnA" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"cnB" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"cnC" = (/obj/structure/closet,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/security/checkpoint/engineering) -"cnD" = (/turf/simulated/floor/plasteel/red/side,/area/security/checkpoint/engineering) -"cnE" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/item/device/radio/off,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel/red/side,/area/security/checkpoint/engineering) -"cnF" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel/red/side,/area/security/checkpoint/engineering) -"cnG" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 27; pixel_y = -7},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/checkpoint/engineering) -"cnH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) -"cnI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/brig) -"cnJ" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Bar APC"; pixel_x = 0; pixel_y = -25},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cnK" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/security/brig) -"cnL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "Security Backup Control"; dir = 8; network = list("MINE")},/turf/simulated/floor/plating,/area/security/brig) -"cnM" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/brig) -"cnN" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "0"; req_one_access_txt = "63, 32"},/turf/simulated/floor/plating,/area/security/brig) -"cnO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel/black,/area/security/brig) -"cnP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/black,/area/security/brig) -"cnQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cnR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/asmaint) -"cnS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cnT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5; initialize_directions = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cnU" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cnV" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cnW" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cnX" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cnY" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cnZ" = (/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"coa" = (/obj/machinery/power/solar_control{id = "aftstarboard"; name = "Aft Starboard Solar Control"; track = 0},/obj/structure/cable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cob" = (/turf/simulated/wall,/area/maintenance/starboardsolar) -"coc" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cod" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cof" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/machinery/camera{c_tag = "Maltese Falcon - Backroom"; dir = 2; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cog" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coh" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"coi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"coj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cok" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"col" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"com" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"con" = (/turf/simulated/floor/plating,/area/security/brig) -"coo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/transfer) -"cop" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/structure/table,/obj/item/device/electropack,/obj/item/device/assembly/signaler{pixel_x = -3; pixel_y = 2},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/transfer) -"coq" = (/turf/simulated/floor/plasteel/green/side,/area/security/prison) -"cor" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/green/side,/area/security/prison) -"cos" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/security/prison) -"cot" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/security/prison) -"cou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cov" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"cow" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/security/prison) -"cox" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"coy" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/aft) -"coz" = (/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/plating,/area/maintenance/aft) -"coA" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plating,/area/maintenance/aft) -"coB" = (/turf/simulated/wall/r_wall,/area/engine/engineering) -"coC" = (/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"coD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/engineering) -"coE" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/engineering) -"coF" = (/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_wall,/area/engine/engineering) -"coG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/engineering) -"coH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) -"coI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coL" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"coN" = (/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"coO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"coP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"coQ" = (/obj/machinery/atmospherics/components/unary/tank{dir = 1},/turf/simulated/floor/plasteel/black,/area/security/brig) -"coR" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"coS" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"coT" = (/obj/structure/table,/obj/item/weapon/circuitboard/vendor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"coU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"coV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"coW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"coX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"coY" = (/turf/simulated/floor/plasteel/black{burnt = 1},/area/security/brig) -"coZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpb" = (/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/prison) -"cpc" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plasteel/black,/area/security/prison) -"cpd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/security/prison) -"cpe" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/security/prison) -"cpf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cpg" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/item/clothing/head/chefhat,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cph" = (/obj/structure/closet,/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"cpi" = (/obj/structure/closet/crate,/obj/item/device/assembly/infra,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"cpj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft) -"cpk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"cpl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft) -"cpm" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/aft) -"cpn" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/aft) -"cpo" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/break_room) -"cpp" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/break_room) -"cpq" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/break_room) -"cpr" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engine/engineering) -"cps" = (/obj/machinery/field/generator,/turf/simulated/floor/plating,/area/engine/engineering) -"cpt" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engine/engineering) -"cpu" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/turf/simulated/floor/plating,/area/engine/engineering) -"cpv" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "caution"},/area/engine/engineering) -"cpw" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpx" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpy" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpz" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Central Left"; dir = 2; network = list("SS13")},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpA" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpB" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpC" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpD" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpE" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpF" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/vending/engineering,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpG" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Central Right"; dir = 2; network = list("SS13")},/obj/machinery/vending/engivend,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpH" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/vending/tool,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cpI" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/engine/engineering) -"cpJ" = (/obj/machinery/light/small{dir = 2},/obj/item/weapon/vending_refill/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cpK" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cpL" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cpM" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) -"cpN" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cpO" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -5; pixel_y = 8},/obj/machinery/button/door{id = "curtains"; name = "Curtains Control"},/obj/machinery/button/flasher{pixel_y = -8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/theatre) -"cpP" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/engine/engine_smes) -"cpQ" = (/obj/machinery/light{dir = 1},/obj/structure/cable/orange{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) -"cpR" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) -"cpS" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) -"cpT" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) -"cpU" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/engine/engine_smes) -"cpV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cpW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/asmaint) -"cpX" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/space) -"cpY" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpZ" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs/cable/white,/obj/item/weapon/gun/syringe,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqa" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosiavulgarisseed,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cqb" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cqc" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/security/prison) -"cqd" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 2; pixel_y = 1},/obj/machinery/alarm{dir = 8; pixel_x = 23; pixel_y = 0},/obj/machinery/camera{c_tag = "Perma East"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cqe" = (/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood/gibs/limb,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/aft) -"cqf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft) -"cqg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"cqh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"cqi" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel,/area/storage/testroom) -"cqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/aft) -"cqk" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/aft) -"cql" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/plating,/area/maintenance/aft) -"cqm" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel/darkwarning,/area/engine/break_room) -"cqn" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/darkwarning,/area/engine/break_room) -"cqo" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel/darkwarning,/area/engine/break_room) -"cqp" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/simulated/floor/plating,/area/engine/engineering) -"cqq" = (/turf/simulated/floor/plating,/area/engine/engineering) -"cqr" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/engine/engineering) -"cqs" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"cqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cqv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cqx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cqy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cqz" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"cqA" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/storage/testroom) -"cqB" = (/obj/structure/table/glass,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/storage/testroom) -"cqC" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2; pixel_y = 1},/obj/structure/table/glass,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/storage/testroom) -"cqD" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/testroom) -"cqE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) -"cqF" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) -"cqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) -"cqH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc{dir = 4; name = "Justice APC"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/transfer) -"cqI" = (/obj/machinery/camera{c_tag = "SMES Room West"; dir = 4; network = list("SS13")},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/engine/engine_smes) -"cqJ" = (/obj/machinery/power/smes/engineering,/obj/structure/cable/orange,/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"cqK" = (/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"cqL" = (/obj/machinery/camera{c_tag = "SMES Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/engine_smes) -"cqM" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/apmaint) -"cqN" = (/obj/structure/closet/crate,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil/random,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqO" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"cqP" = (/obj/machinery/hydroponics/constructable,/obj/item/weapon/cultivator,/obj/item/seeds/carrotseed,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cqQ" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cqR" = (/obj/machinery/hydroponics/constructable,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/plasteel/black,/area/security/prison) -"cqS" = (/obj/machinery/biogenerator,/obj/machinery/camera{c_tag = "Prison Hydroponics"; dir = 1; network = list("SS13","Prison")},/turf/simulated/floor/plasteel,/area/security/prison) -"cqT" = (/obj/machinery/vending/sustenance{desc = "A vending machine normally reserved for work camps."; name = "\improper sustenance vendor"; product_slogans = "Enjoy your meal.;Enough calories to support any worker."},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cqU" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cqV" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cqW" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"cqX" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"cqY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"cqZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) -"cra" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plating,/area/maintenance/aft) -"crb" = (/obj/structure/table,/obj/item/weapon/paper,/turf/simulated/floor/plating,/area/maintenance/aft) -"crc" = (/obj/structure/table,/obj/item/weapon/newspaper,/turf/simulated/floor/plating,/area/maintenance/aft) -"crd" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft) -"cre" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Engineering Secure Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/engine/engineering) -"crf" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/simulated/floor/plating,/area/engine/engineering) -"crg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"crh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cri" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"crj" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/engine/engineering) -"crk" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"crl" = (/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"crm" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/engine/engineering) -"crn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cro" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"crp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 15000; dir = 1; name = "Engineering APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) -"crq" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"crr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "n2_in"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/security/transfer) -"crs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) -"crt" = (/obj/machinery/door/window/brigdoor{dir = 8; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/window/brigdoor{dir = 4; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/security/transfer) -"cru" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/break_room) -"crv" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/engine/engine_smes) -"crw" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/darkwarning,/area/engine/engine_smes) -"crx" = (/turf/simulated/floor/plasteel/darkwarning,/area/engine/engine_smes) -"cry" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/engine/engine_smes) -"crz" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"crA" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"crB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/maintenance/apmaint) -"crC" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engine/engineering) -"crD" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"crE" = (/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 4; pixel_y = 2},/obj/structure/table,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/reagentgrinder{pixel_y = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"crF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/prison) -"crG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/aft) -"crH" = (/obj/structure/barricade/wooden,/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"crI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/aft) -"crJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft) -"crK" = (/obj/structure/rack,/obj/item/weapon/wirecutters,/obj/item/device/multitool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"crL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"crM" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/aft) -"crN" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Aft Maintenance APC"; pixel_y = -24},/obj/structure/cable{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"crO" = (/obj/structure/table,/obj/item/weapon/lighter,/turf/simulated/floor/plating,/area/maintenance/aft) -"crP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"crQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/head/welding,/turf/simulated/floor/plating,/area/maintenance/aft) -"crR" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/aft) -"crS" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/aft) -"crT" = (/turf/simulated/wall/r_wall,/area/crew_quarters/chief) -"crU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/crew_quarters/chief) -"crV" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"crW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"crX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"crY" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel,/area/engine/engineering) -"crZ" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"csa" = (/obj/structure/closet/radiation,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"csb" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/engine/engineering) -"csc" = (/obj/structure/closet/radiation,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"csd" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cse" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/item/weapon/airlock_painter,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"csf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"csg" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/engine/engineering) -"csh" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"csi" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"csj" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"csk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/wall/r_wall,/area/engine/engineering) -"csl" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"csm" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/engine/engineering) -"csn" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"cso" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"css" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"cst" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csw" = (/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"csx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"csy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"csz" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"csA" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"csB" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"csC" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"csD" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"csE" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"csF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"csG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"csH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/maintenance/apmaint) -"csI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csK" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csL" = (/obj/effect/decal/cleanable/blood/gibs/limb,/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csM" = (/obj/machinery/chem_heater,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft) -"csO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"csP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/wall,/area/maintenance/aft) -"csQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/engine/engineering) -"csR" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating,/area/maintenance/aft) -"csS" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/aft) -"csT" = (/obj/structure/table,/obj/item/weapon/screwdriver,/obj/item/robot_parts/l_arm{pixel_x = -7; pixel_y = 3},/obj/item/robot_parts/chest,/obj/item/robot_parts/head{pixel_y = 10},/turf/simulated/floor/plating,/area/maintenance/aft) -"csU" = (/obj/machinery/suit_storage_unit/ce,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/crew_quarters/chief) -"csV" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"csW" = (/obj/machinery/light{dir = 1},/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"csX" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"csY" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"csZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) -"cta" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -26; pixel_y = 3},/obj/machinery/camera{c_tag = "Aft Starboard Solar Control"; dir = 4; network = list("SS13")},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"ctb" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"ctc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cte" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctf" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctg" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"cth" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/engine/engineering) -"cti" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ctj" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/motion,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ctk" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/engine/engineering) -"ctl" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"ctm" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctn" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_y = 6},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cto" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctq" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"ctr" = (/obj/machinery/door/airlock/engineering{name = "SMES Room"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engine_smes) -"cts" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctt" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctv" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctw" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctx" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"cty" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ctz" = (/obj/structure/lattice,/obj/item/stack/cable_coil/random,/turf/space,/area/space) -"ctA" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"ctB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ctC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ctD" = (/obj/structure/bed/stool,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ctE" = (/mob/living/simple_animal/hostile/carp{attacktext = "chomps"; butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/carpmeat = 5); desc = "A particularly ferocious, fang-bearing creature that resembles a fish."; emote_taunt = list("glares, gnashes"); environment_smash = 0; harm_intent_damage = 10; health = 100; maxHealth = 100; name = "Chompers"},/turf/space,/area/space) -"ctF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft) -"ctG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"ctH" = (/obj/machinery/computer/atmos_alert,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"ctI" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"ctJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"ctK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"ctL" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/crew_quarters/chief) -"ctM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"ctN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ctO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"ctP" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/engine/engineering) -"ctQ" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"ctR" = (/obj/structure/particle_accelerator/end_cap,/turf/simulated/floor/plating,/area/engine/engineering) -"ctS" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (EAST)"; icon_state = "brownold"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/engine/engineering) -"ctT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) -"ctU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/camera{c_tag = "Engineering East"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) -"ctV" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctW" = (/obj/machinery/power/apc{dir = 2; name = "SMES room APC"; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctX" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctY" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ctZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cua" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft) -"cub" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft) -"cuc" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"cud" = (/obj/machinery/power/solar_control{id = "aftport"; name = "Aft Port Solar Control"; track = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cue" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuf" = (/obj/machinery/power/smes,/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cug" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"cuh" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft) -"cui" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cuj" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cuk" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cul" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cum" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_4) -"cun" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_4) -"cuo" = (/obj/machinery/camera{c_tag = "Engineering West"; dir = 1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/engine/engineering) -"cup" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cuq" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_4) -"cur" = (/obj/machinery/button/door{id = "SecJusticeChamber"; name = "Justice Vents"; pixel_x = -26; pixel_y = -8},/obj/machinery/button/door{id = "executionfireblast"; name = "Blast Doors"; pixel_x = -26; pixel_y = 8},/obj/machinery/atmospherics/components/binary/volume_pump{tag = "icon-volpump_map (NORTH)"; icon_state = "volpump_map"; dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) -"cus" = (/obj/structure/bed/stool,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cut" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/engineering) -"cuu" = (/obj/machinery/particle_accelerator/control_box,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/engine/engineering) -"cuv" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/simulated/floor/plating,/area/engine/engineering) -"cuw" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plating,/area/engine/engineering) -"cux" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/engine/engineering) -"cuy" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cuz" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cuA" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = -32},/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cuB" = (/obj/structure/rack{dir = 8; layer = 2.9},/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/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cuC" = (/obj/structure/closet/firecloset,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cuD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/engine/engineering) -"cuE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cuF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cuG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/engine/engineering) -"cuH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/engineering) -"cuI" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/space) -"cuJ" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/airless,/area/space) -"cuK" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/space) -"cuL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cuM" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cuN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cuO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cuP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft) -"cuQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft) -"cuR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuS" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuT" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuU" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuV" = (/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuW" = (/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuX" = (/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cuY" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/maintenance/portsolar) -"cuZ" = (/turf/space,/area/maintenance/portsolar) -"cva" = (/turf/simulated/wall/r_wall,/area/maintenance/portsolar) -"cvb" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 4; network = list("SS13")},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/mob/living/simple_animal/parrot/Poly,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cvc" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cvd" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cve" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"cvf" = (/turf/simulated/wall,/area/engine/engineering) -"cvg" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cvh" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating,/area/engine/engineering) -"cvi" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/engine/engineering) -"cvj" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/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/crowbar,/turf/simulated/floor/plasteel{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"cvk" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/area/engine/engineering) -"cvl" = (/obj/structure/particle_accelerator/power_box,/turf/simulated/floor/plating,/area/engine/engineering) -"cvm" = (/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel{tag = "icon-brownold (EAST)"; icon_state = "brownold"; dir = 4},/area/engine/engineering) -"cvn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/engine/engineering) -"cvo" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/engine/engineering) -"cvp" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cvq" = (/obj/structure/rack{dir = 8; layer = 2.9},/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},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cvr" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering East"; dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cvs" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cvt" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cvu" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/engineering) -"cvv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cvw" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/simulated/floor/plating/airless,/area/space) -"cvx" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/space,/area/solar/starboard) -"cvy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/aft) -"cvB" = (/obj/structure/table,/obj/item/clothing/mask/cigarette/cigar,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"cvC" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft) -"cvD" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cvE" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) -"cvF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/crew_quarters/chief) -"cvG" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engine/engineering) -"cvH" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"cvI" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable/yellow,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"cvJ" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/item/weapon/tank/internals/plasma,/obj/structure/cable/yellow,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"cvK" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHWEST)"; icon_state = "brownold"; dir = 10},/area/engine/engineering) -"cvL" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/simulated/floor/plasteel{tag = "icon-brownold"; icon_state = "brownold"},/area/engine/engineering) -"cvM" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHEAST)"; icon_state = "brownold"; dir = 6},/area/engine/engineering) -"cvN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"cvO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/turf/simulated/floor/plating,/area/engine/engineering) -"cvP" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engine/engineering) -"cvQ" = (/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cvR" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvS" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/apmaint) -"cvU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) -"cvW" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvX" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvZ" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"cwa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/aft) -"cwb" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft) -"cwc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cwd" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHWEST)"; icon_state = "brownold"; dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/engine/engineering) -"cwe" = (/turf/simulated/floor/plasteel{tag = "icon-brownold"; icon_state = "brownold"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/engine/engineering) -"cwf" = (/turf/simulated/floor/plasteel{tag = "icon-brownold"; icon_state = "brownold"},/obj/item/weapon/wirecutters,/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/engine/engineering) -"cwg" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHEAST)"; icon_state = "brownold"; dir = 6},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/engine/engineering) -"cwh" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwi" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwm" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwn" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cwo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance{name = "Aux Robotics"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cwp" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/port) -"cwq" = (/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cwr" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity North-West"; dir = 2; network = list("Singularity")},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cws" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity North East"; dir = 2; network = list("Singularity")},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cwt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cww" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cwx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwy" = (/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) -"cwz" = (/obj/machinery/mecha_part_fabricator{dir = 2; id = "0"; name = "defunct fabricator"; req_access = "0"},/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) -"cwA" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwB" = (/obj/machinery/light/small{dir = 1},/obj/item/device/camera,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwC" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwD" = (/obj/machinery/power/apc{dir = 8; name = "Assembly APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwE" = (/obj/structure/rack,/obj/item/stack/sheet/cardboard,/obj/item/device/radio/off,/obj/machinery/light_construct{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwF" = (/obj/structure/rack,/obj/item/stack/rods{amount = 23},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) -"cwG" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cwH" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cwI" = (/obj/structure/bed/stool,/obj/item/clothing/mask/cigarette,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwJ" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"cwK" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cwL" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/starboard) -"cwM" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) -"cwN" = (/obj/item/stack/tile/plasteel,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/assembly/assembly_line) -"cwO" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/assembly/assembly_line) -"cwP" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/assembly/assembly_line) -"cwQ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/assembly/assembly_line) -"cwR" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/assembly/assembly_line) -"cwS" = (/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwT" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/assembly/assembly_line) -"cwU" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/assembly/assembly_line) -"cwV" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cwW" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cwX" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cwY" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cwZ" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxc" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxd" = (/turf/simulated/floor/mech_bay_recharge_floor{nitrogen = 0; oxygen = 0},/area/assembly/assembly_line) -"cxe" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/assembly/assembly_line) -"cxf" = (/obj/structure/lattice,/obj/item/stack/rods,/turf/space,/area/assembly/assembly_line) -"cxg" = (/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/assembly/assembly_line) -"cxh" = (/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) -"cxi" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cxj" = (/obj/machinery/power/emitter{anchored = 1; dir = 4; state = 2},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cxk" = (/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/engine/engineering) -"cxl" = (/obj/machinery/field/generator{anchored = 1; state = 2},/turf/simulated/floor/plating/airless,/area/space) -"cxm" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/engine/engineering) -"cxn" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; state = 2},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cxo" = (/turf/simulated/wall,/area/assembly/assembly_line) -"cxp" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/assembly/assembly_line) -"cxq" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/assembly/assembly_line) -"cxr" = (/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxs" = (/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -1; pixel_y = -3},/obj/item/weapon/wrench,/obj/item/device/flashlight/seclite,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxt" = (/obj/structure/rack,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/hand_labeler,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/assembly/assembly_line) -"cxu" = (/obj/structure/closet,/obj/item/stack/sheet/metal{amount = 34},/obj/item/weapon/extinguisher/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxv" = (/obj/structure/closet,/obj/item/stack/sheet/glass{amount = 12},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/assembly/assembly_line) -"cxw" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxx" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cxy" = (/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) -"cxz" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxA" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) -"cxB" = (/obj/machinery/the_singularitygen{anchored = 1},/turf/simulated/floor/plating/airless,/area/space) -"cxC" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxE" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/port) -"cxF" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cxG" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_se"; name = "southeast of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"cxH" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_sw"; name = "southwest of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"cxI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxK" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxL" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/structure/table,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxM" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/engine/engineering) -"cxO" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxP" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxQ" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxR" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cxS" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod4"; name = "escape pod 4"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cxT" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_4) -"cxU" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cxV" = (/obj/machinery/power/apc{dir = 2; name = "Prisoner Transfer Centre"; pixel_x = 0; pixel_y = -27},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/transfer) -"cxW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxY" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cxZ" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cya" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_4) -"cyb" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_4) -"cyc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/aft) -"cyd" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cye" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyi" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/aft) -"cyj" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyk" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyl" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/clothing/gloves/color/yellow,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cym" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyn" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyo" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/paper/solar,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyp" = (/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyq" = (/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/power/apc{dir = 8; name = "Aft Port Solar APC"; pixel_x = -26; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cys" = (/obj/structure/grille,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) -"cyt" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) -"cyu" = (/obj/structure/grille,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) -"cyv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage"; req_access_txt = "11"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cyw" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/engineering) -"cyx" = (/obj/structure/rack,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cyy" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 15000; dir = 1; name = "Engineering APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) -"cyz" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/aft) -"cyA" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 27},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/button/door{id = "Secure Storage"; name = "Secure Storage"; pixel_x = 8; pixel_y = 23},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cyB" = (/obj/structure/grille,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/crew_quarters/chief) -"cyC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cyD" = (/obj/structure/table/reinforced,/obj/item/stack/medical/bruise_pack{pixel_x = -3; pixel_y = 2},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cyE" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/chief) -"cyF" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cyG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cyH" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = -32},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cyI" = (/obj/item/clothing/glasses/meson,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) -"cyJ" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/weapon/cartridge/atmos,/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "CE Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) -"cyK" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) -"cyL" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) -"cyM" = (/obj/structure/cable/yellow,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cyN" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cyO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cyP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cyQ" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/abandoned) -"cyR" = (/turf/simulated/floor/plating,/area/shuttle/abandoned) -"cyS" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f13"; icon_state = "swall_f13"},/area/shuttle/abandoned) -"cyT" = (/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cyU" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "oldship_gun"},/turf/simulated/floor/plating,/area/shuttle/abandoned) -"cyV" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plating,/area/shuttle/abandoned) -"cyW" = (/obj/machinery/door/poddoor{id = "oldship_gun"; name = "pod bay door"},/turf/simulated/floor/plating,/area/shuttle/abandoned) -"cyX" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f12"; icon_state = "swall_f12"},/area/shuttle/abandoned) -"cyY" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/abandoned) -"cyZ" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)"; icon_state = "propulsion_r"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"cza" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f17"; icon_state = "swall_f17"},/area/shuttle/abandoned) -"czb" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plating,/area/shuttle/abandoned) -"czc" = (/obj/item/weapon/stock_parts/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czd" = (/obj/structure/rack,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cze" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f14"; icon_state = "swall_f14"},/area/shuttle/abandoned) -"czf" = (/obj/structure/cable,/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czg" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f11"; icon_state = "swall_f11"},/area/shuttle/abandoned) -"czh" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/weapon/paper{text = "What the hell Gary? What is this shit? SIXTEEN sort junctions? NT is going to kill us if this isn't fixed before the shift start. Get your ass on this once you're done futzing about on the port transit station maint."},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) -"czi" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czj" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/abandoned) -"czl" = (/obj/machinery/light,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"czm" = (/obj/machinery/computer/station_alert,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint) -"czn" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"czo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czp" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"czq" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"czr" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czs" = (/obj/structure/table,/obj/item/weapon/gun/energy/laser/retro,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/space) -"czu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) -"czv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czw" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Observation Pod"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"czx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"czy" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"czz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"czA" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czB" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czC" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czD" = (/obj/machinery/computer/shuttle/white_ship,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czE" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/effect/decal/cleanable/generic,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"czF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) -"czG" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czH" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Shutters"; pixel_y = 26; req_access_txt = "29"},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) -"czJ" = (/obj/machinery/vending/snack,/obj/machinery/light/small,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"czK" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/abandoned) -"czL" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/abandoned) -"czM" = (/obj/machinery/door/window/northright,/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"czN" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"czO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czP" = (/obj/machinery/vending/wallmed{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) -"czQ" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) -"czR" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f18"; icon_state = "swall_f18"},/area/shuttle/abandoned) -"czS" = (/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czT" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czU" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"czV" = (/obj/structure/bed/chair{dir = 1; name = "Command Station"},/obj/machinery/keycard_auth{pixel_x = -6; pixel_y = 38},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{pixel_x = 10; pixel_y = 28},/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = 23},/turf/simulated/floor/plasteel/black,/area/bridge) -"czW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) -"czX" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"czY" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czZ" = (/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"cAa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Command Bridge"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"cAb" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/research) -"cAc" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f16"; icon_state = "swall_f16"},/area/shuttle/abandoned) -"cAd" = (/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cAe" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cAf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) -"cAg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) -"cAh" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) -"cAi" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cAj" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) -"cAk" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plasteel/neutral,/area/bridge) -"cAl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/bridge) -"cAm" = (/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cAn" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Command EVA"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/space) -"cAo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/space) -"cAp" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/space) -"cAq" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) -"cAr" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_r (NORTH)"; icon_state = "burst_r"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) -"cAs" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) -"cAt" = (/turf/simulated/floor/plasteel/black,/area/space) -"cAu" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/space) -"cAv" = (/obj/structure/table,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/space) -"cAw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral) -"cAx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cAy" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/supply) -"cAz" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) -"cAA" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/supply) -"cAB" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/supply) -"cAC" = (/turf/simulated/floor/plasteel/darkwarning,/area/space) -"cAD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/space) -"cAE" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/space) -"cAF" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/supply) -"cAG" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) -"cAH" = (/turf/simulated/wall/shuttle{tag = "icon-wall_floor (NORTHWEST)"; icon_state = "wall_floor"; dir = 9},/area/shuttle/supply) -"cAI" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/supply) -"cAJ" = (/turf/simulated/wall/shuttle{tag = "icon-wall_floor (NORTHEAST)"; icon_state = "wall_floor"; dir = 5},/area/shuttle/supply) -"cAK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Exit Button"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"cAL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral) -"cAM" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/supply) -"cAN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/medbay) -"cAO" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/medbay) -"cAP" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cAQ" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/maintenance/port) -"cAR" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/maintenance/port) -"cAS" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/obj/docking_port/mobile/supply{dir = 4; dwidth = 5; width = 12},/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "supply bay"; width = 12},/turf/simulated/floor/plating,/area/shuttle/supply) -"cAT" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0; pixel_x = 32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/quartermaster/storage) -"cAU" = (/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; name = "Loading Doors"; pixel_x = -24; pixel_y = 8},/obj/machinery/button/door{id = "QMLoaddoor"; name = "Loading Doors"; pixel_x = -24; pixel_y = -8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) -"cAV" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cAW" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 4; id = "QMUnload"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cAX" = (/obj/machinery/status_display,/turf/simulated/wall,/area/quartermaster/sorting) -"cAY" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"cAZ" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/supply) -"cBa" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/supply) -"cBb" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/supply) -"cBc" = (/obj/machinery/door/morgue{name = "Study #1"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/library) -"cBd" = (/obj/machinery/door/morgue{name = "Study #2"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/library) -"cBe" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/blue,/area/quartermaster/sorting) -"cBf" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/red,/area/quartermaster/sorting) -"cBg" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) -"cBh" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"cBi" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort1"},/turf/simulated/floor/plasteel/blue,/area/quartermaster/sorting) -"cBj" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort2"},/turf/simulated/floor/plasteel/red,/area/quartermaster/sorting) -"cBk" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort3"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) -"cBl" = (/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"cBm" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort3"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) -"cBn" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) -"cBo" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) -"cBp" = (/obj/structure/bed/dogbed,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"cBq" = (/obj/machinery/conveyor{dir = 5; id = "PackageSort3"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) -"cBr" = (/obj/machinery/conveyor{dir = 10; icon_state = "conveyor0"; id = "PackageSort3"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) -"cBs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"cBt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"cBu" = (/obj/structure/transit_tube{icon_state = "N-SE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) -"cBv" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/central) -"cBw" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) -"cBx" = (/obj/structure/transit_tube{icon_state = "N-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) -"cBy" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) -"cBz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Quiet Room"; opacity = 1},/turf/simulated/floor/wood,/area/library) -"cBA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) -"cBB" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"cBC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall,/area/chapel/office) -"cBD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) -"cBE" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"cBF" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"cBG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) -"cBH" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/escape) -"cBI" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/escape) -"cBJ" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/escape) -"cBK" = (/obj/structure/window,/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"cBL" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) -"cBM" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/shuttle/escape) -"cBN" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/escape) -"cBO" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"; dir = 2},/area/shuttle/escape) -"cBP" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) -"cBQ" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) -"cBR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) -"cBS" = (/obj/machinery/recharge_station,/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/shuttle/escape) -"cBT" = (/turf/simulated/wall/shuttle{tag = "icon-swall11 (NORTH)"; icon_state = "swall11"; dir = 1},/area/shuttle/escape) -"cBU" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/shuttle/escape) -"cBV" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/shuttle/escape) -"cBW" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) -"cBX" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/shuttle/escape) -"cBY" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cBZ" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/shuttle/escape) -"cCa" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cCb" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cCc" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) -"cCd" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) -"cCe" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/shuttle/escape) -"cCf" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/shuttle/escape) -"cCg" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/shuttle/escape) -"cCh" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cCi" = (/obj/machinery/space_heater,/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) -"cCj" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/shuttle/escape) -"cCk" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) -"cCl" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/shuttle/escape) -"cCm" = (/obj/machinery/bot/medbot{name = "\improper emergency medibot"; pixel_x = -3; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) -"cCn" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning"; icon_state = "warning"},/area/shuttle/escape) -"cCo" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/shuttle/escape) -"cCp" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cCq" = (/obj/machinery/button/door{id = "shuttlecargo"; name = "Cargo Shutters"; pixel_y = -26},/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/shuttle/escape) -"cCr" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/space) -"cCs" = (/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_y = -8; tag = "icon-direction_evac (NORTH)"},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8},/obj/structure/sign/directions/medical{dir = 8; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_med (WEST)"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/crew_quarters/theatre) -"cCt" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3 (NORTH)"; icon_state = "swallc3"; dir = 1},/area/shuttle/escape) -"cCu" = (/obj/machinery/door/poddoor/shutters{id = "shuttlecargo"; name = "Escape Shuttle Cargo Shutters"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"cCv" = (/obj/machinery/door/poddoor/shutters{name = "Escape Shuttle Cargo Shutters"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"cCw" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"; dir = 2},/area/shuttle/escape) -"cCx" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/obj/structure/grille,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"cCy" = (/obj/structure/rack,/obj/item/toy/gun,/obj/item/toy/gun,/obj/item/toy/ammo/gun,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCz" = (/obj/structure/rack,/obj/item/weapon/twohanded/spear{desc = "This spear has had it's tip blunted. Shouldn't be able to hurt anyone now."; embed_chance = 2; embedded_fall_chance = 10; embedded_fall_pain_multiplier = 10; embedded_impact_pain_multiplier = 5; embedded_pain_chance = 10; force = 0; force_unwielded = 0; force_wielded = 0; name = "Mock Spear"; throwforce = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCA" = (/obj/machinery/vending/autodrobe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCB" = (/obj/structure/rack,/obj/machinery/syndicatebomb/training,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCC" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCD" = (/obj/structure/table,/obj/structure/mirror{pixel_y = 24},/obj/item/weapon/lipstick/random,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCE" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/lipstick/random,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCF" = (/obj/structure/table,/obj/structure/mirror{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/obj/machinery/camera{c_tag = "Backstage"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCG" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/landmark/costume,/obj/effect/landmark/costume,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/theatre) -"cCH" = (/obj/structure/table,/obj/structure/mirror{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCI" = (/obj/machinery/power/apc{dir = 1; name = "Theater Storage APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCJ" = (/obj/structure/closet/wardrobe/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCL" = (/obj/machinery/status_display,/turf/simulated/wall,/area/storage/testroom) -"cCM" = (/obj/machinery/button/door{id = "shuttlecargo"; name = "Cargo Shutters"; pixel_y = 26; req_access_txt = "50"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cCN" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{dheight = 0; dir = 8; dwidth = 9; height = 20; width = 18},/obj/docking_port/stationary{dheight = 0; dir = 8; dwidth = 9; height = 20; id = "emergency_home"; name = "Escape Home"; width = 18},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cCO" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"cCP" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel,/area/storage/auxillary) -"cCQ" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cCR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCS" = (/obj/item/weapon/rack_parts,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCX" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/theatre) -"cCY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cCZ" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor) -"cDb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDc" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDd" = (/obj/structure/closet/wardrobe/engineering_yellow,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDe" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDf" = (/turf/simulated/floor/plasteel/darkwarning,/area/crew_quarters/theatre) -"cDg" = (/obj/structure/closet/gmcloset,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDh" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDj" = (/obj/structure/closet/wardrobe/white/medical,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDl" = (/obj/machinery/door/airlock/glass_command{name = "Cockpit"; req_access_txt = "19"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDm" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/escape) -"cDn" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Escape Shuttle Infirmary"; req_access_txt = "0"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDo" = (/obj/structure/grille,/obj/structure/window/shuttle,/obj/structure/sign/bluecross_2{pixel_x = -32},/turf/simulated/floor/plating,/area/shuttle/escape) -"cDp" = (/obj/structure/grille,/obj/structure/window/shuttle,/obj/structure/sign/bluecross_2{pixel_x = 32},/turf/simulated/floor/plating,/area/shuttle/escape) -"cDq" = (/obj/machinery/door/airlock/glass_security{name = "Brig"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"cDr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/janitor) -"cDs" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cDt" = (/obj/machinery/door/airlock/wood{name = "Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDu" = (/obj/structure/falsewall,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/wood{name = "Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) -"cDw" = (/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDx" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDy" = (/obj/machinery/status_display{pixel_y = 31},/obj/structure/bed/dogbed,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDz" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDA" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDB" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDC" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDD" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -29; pixel_y = 0},/obj/structure/closet/bombcloset,/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) -"cDE" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) -"cDF" = (/obj/machinery/alarm{dir = 8; pixel_x = 23; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cDG" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDH" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) -"cDJ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) -"cDK" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/escape) -"cDL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plating,/area/storage/testroom) -"cDM" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDN" = (/obj/machinery/computer/emergency_shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDO" = (/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cDP" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDQ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDR" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) -"cDS" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/atmos) -"cDT" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/space) -"cDU" = (/obj/machinery/computer/slot_machine,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"cDV" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDW" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/retractor{pixel_x = 4},/obj/item/weapon/hemostat{pixel_x = -4},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDX" = (/obj/structure/table,/obj/item/weapon/defibrillator/loaded,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cDY" = (/obj/machinery/vending/assist,/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel/neutral,/area/atmos) -"cDZ" = (/obj/structure/table,/obj/machinery/status_display{pixel_y = -32},/obj/machinery/recharger{active_power_usage = 0; idle_power_usage = 0; use_power = 0},/obj/item/device/assembly/flash{pixel_x = -5; pixel_y = 5},/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"cEa" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/atmos) -"cEb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/space) -"cEc" = (/obj/machinery/smartfridge,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/space) -"cEd" = (/obj/effect/landmark/start{name = "Cook"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/space) -"cEe" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hydroponics) -"cEf" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "diagonalWall3"},/area/shuttle/escape) -"cEg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/apmaint) -"cEh" = (/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"cEi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"cEj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"cEk" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"cEl" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Theater"; dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"cEm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"cEn" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cEo" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"cEp" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) -"cEq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) -"cEr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/hallway/primary/aft) -"cEs" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/space) -"cEt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) -"cEu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"cEv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) -"cEw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"cEx" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/power/apc{dir = 1; name = "Tech Storage APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/storage/tech) -"cEy" = (/obj/machinery/camera{c_tag = "Aft Starboard Solar"; dir = 2; network = list("SS13")},/turf/space,/area/space) +"aab" = (/turf/space,/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) +"aac" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) +"aad" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters"; name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) +"aae" = (/turf/space,/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) +"aaf" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aag" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aah" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aai" = (/obj/machinery/computer/shuttle/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaj" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aak" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aal" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aam" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aan" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aao" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aap" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaq" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "diagonalWall3"},/area/shuttle/syndicate) +"aar" = (/obj/machinery/door/window{name = "Cockpit"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aas" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate) +"aat" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_ne"; name = "northeast of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) +"aau" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aav" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties{pixel_x = 1; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaw" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aax" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aay" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) +"aaz" = (/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) +"aaA" = (/obj/machinery/suit_storage_unit/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaB" = (/obj/effect/landmark{name = "Syndicate-Uplink"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaC" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaD" = (/obj/structure/table,/obj/item/device/aicard,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaE" = (/obj/machinery/door/poddoor{auto_close = 300; id = "smindicate"; name = "outer blast door"},/obj/machinery/button/door{id = "smindicate"; name = "external door control"; pixel_x = -26; pixel_y = 0; req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate"; name = "syndicate infiltrator"; roundstart_move = "syndicate_away"; travelDir = 180; width = 18},/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_nw"; name = "northwest of station"; turf_type = /turf/space; width = 18},/turf/simulated/floor/plating,/area/shuttle/syndicate) +"aaF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) +"aaG" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) +"aaH" = (/obj/structure/table,/obj/item/weapon/c4{pixel_x = 2; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaI" = (/obj/machinery/door/window{dir = 4; name = "EVA Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaJ" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaK" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "EVA Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) +"aaM" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaN" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaO" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaQ" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaR" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaS" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaT" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaU" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaV" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaW" = (/obj/structure/table,/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaX" = (/obj/machinery/door/window{dir = 4; name = "Infirmary"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaY" = (/obj/machinery/door/window/westright{name = "Tool Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aaZ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aba" = (/obj/structure/grille,/turf/space,/area/space) +"abb" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area/space) +"abc" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abd" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Infirmary"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abe" = (/obj/machinery/door/window{dir = 8; name = "Tool Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abf" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/lattice,/turf/space,/area/space) +"abg" = (/obj/structure/table,/obj/item/weapon/gun/syringe{pixel_x = 1; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abh" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe/charcoal,/obj/item/weapon/reagent_containers/syringe/charcoal{pixel_y = 2},/obj/item/weapon/reagent_containers/syringe/charcoal{pixel_y = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abi" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abj" = (/obj/machinery/door/window{dir = 1; name = "Secure Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abk" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abl" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abm" = (/obj/structure/lattice,/turf/space,/area/space) +"abn" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) +"abo" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abp" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abq" = (/obj/effect/landmark{name = "Nuclear-Bomb"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abs" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/robot_parts/l_arm,/obj/item/robot_parts/r_arm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abt" = (/obj/structure/optable,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abu" = (/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abv" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/shuttle/syndicate) +"abw" = (/obj/structure/computerframe,/obj/item/weapon/paper{info = "

Teleporter Instruction


  1. Install circuit board, glass and wiring to complete Teleporter Control Console
  2. Use a screwdriver, wirecutter and screwdriver again on the Teleporter Station to connect it
  3. Set destination with Teleporter Control Computer
  4. Activate Teleporter Hub with Teleporter Station
"; name = "Teleporter Instructions"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abx" = (/obj/machinery/teleport/station,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aby" = (/obj/machinery/teleport/hub/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abz" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/floor/plating,/area/shuttle/syndicate) +"abA" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/syndicate) +"abB" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/floor/plating,/area/shuttle/syndicate) +"abC" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) +"abD" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/auxstarboard) +"abE" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abG" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abH" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abI" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abL" = (/obj/structure/cable,/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) +"abM" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abN" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"abO" = (/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) +"abP" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abQ" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/auxport) +"abR" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai) +"abS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"abT" = (/turf/simulated/wall,/area/hallway/primary/starboard) +"abU" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/turret_protected/ai) +"abV" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/turret_protected/ai) +"abW" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/obj/machinery/power/terminal{dir = 8},/obj/machinery/camera/motion{c_tag = "AI Core"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/turret_protected/ai) +"abX" = (/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/space) +"abY" = (/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"abZ" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) +"aca" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/auxport) +"acb" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners"; icon_state = "darkpurplecorners"},/obj/machinery/porta_turret{ai = 1; dir = 2},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners"; icon_state = "warninglinecorners"},/area/turret_protected/ai) +"acc" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/turret_protected/ai) +"acd" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"ace" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"acf" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"acg" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/turret_protected/ai) +"ach" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/obj/machinery/porta_turret{ai = 1; dir = 2},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners (NORTH)"; icon_state = "warninglinecorners"; dir = 1},/area/turret_protected/ai) +"aci" = (/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/space) +"acj" = (/turf/simulated/floor/plating/airless,/area/space) +"ack" = (/turf/simulated/wall,/area/solar/auxstarboard) +"acl" = (/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) +"acm" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars"; dir = 1},/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) +"acn" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) +"aco" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) +"acp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acr" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acs" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"act" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acw" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/turret_protected/ai) +"acx" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"acy" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"acz" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"},/area/shuttle/pod_1) +"acA" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) +"acB" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f10"},/area/shuttle/pod_1) +"acC" = (/turf/simulated/wall/r_wall,/area/gateway) +"acD" = (/turf/simulated/wall/r_wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"acE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"acF" = (/turf/simulated/wall,/area/maintenance/auxsolarstarboard) +"acG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"acH" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"acI" = (/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"acJ" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) +"acK" = (/turf/simulated/wall,/area/ai_monitored/storage/satellite) +"acL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"acM" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"acN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/ai) +"acO" = (/obj/machinery/door/window{dir = 1; name = "AI Core Door"; req_access_txt = "16"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"acP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"acQ" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/shuttle/pod_1) +"acR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) +"acS" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) +"acT" = (/obj/machinery/gateway{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"acU" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) +"acV" = (/turf/simulated/floor/plasteel/black,/area/gateway) +"acW" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"acX" = (/obj/structure/closet/secure_closet/medical1{pixel_x = 0},/obj/machinery/alarm{dir = 2; icon_state = "alarm0"; pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"acY" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"acZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"ada" = (/obj/structure/rack,/obj/item/weapon/hatchet,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"adb" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"adc" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"add" = (/obj/machinery/power/solar_control{id = "biodome"; name = "Biodome Solar Control"; track = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"ade" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"adf" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adg" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adh" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adj" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -5},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = -27},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -5},/obj/effect/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 32; pixel_y = -32},/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = -32},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"adk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adl" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adm" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adn" = (/obj/machinery/atmospherics/components/unary/tank,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"ado" = (/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"adp" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) +"adq" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"adr" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/gateway) +"ads" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"adt" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/item/weapon/reagent_containers/syringe/charcoal,/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -1; pixel_y = 2},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"adu" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"adv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"adw" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"adx" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ady" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"adz" = (/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Fore Starboard Solar Control"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"adA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"adB" = (/obj/structure/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"adC" = (/obj/structure/rack,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"adD" = (/obj/machinery/light/small{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adE" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adF" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adG" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/camera{c_tag = "MiniSat Electrical"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adI" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"adL" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/machinery/camera{c_tag = "MiniSat Atmospherics"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 1},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adN" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"adP" = (/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) +"adQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"adR" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f5"},/area/shuttle/pod_1) +"adS" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod1"; name = "escape pod 1"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) +"adT" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f9"},/area/shuttle/pod_1) +"adU" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) +"adV" = (/obj/machinery/gateway,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"adW" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) +"adX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel/black,/area/gateway) +"adY" = (/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/structure/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"adZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aea" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aeb" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Gateway Storage"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aec" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aed" = (/obj/machinery/power/smes,/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"aee" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Fore Starboard Solars"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"aef" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeg" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeh" = (/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aei" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aej" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) +"aek" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/obj/machinery/camera{c_tag = "AI Chamber 1"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/turret_protected/ai) +"ael" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"aem" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"aen" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"aeo" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/turret_protected/ai) +"aep" = (/obj/structure/rack,/obj/item/clothing/head/welding,/obj/item/weapon/wrench,/obj/item/weapon/crowbar/red,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aer" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aes" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aet" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aeu" = (/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aev" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aew" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/black,/area/gateway) +"aex" = (/obj/structure/closet/l3closet/scientist,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aey" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aez" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aeA" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Gateway APC"; pixel_x = 28; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aeB" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeC" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"aeD" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeE" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeI" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeJ" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aeK" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeL" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "MiniSat Aux APC"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeM" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/turretid{name = "AI Chamber Access Turret Control"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeN" = (/turf/simulated/wall/r_wall,/area/ai_monitored/storage/satellite) +"aeO" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/obj/machinery/light,/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners (WEST)"; icon_state = "warninglinecorners"; dir = 8},/area/turret_protected/ai) +"aeP" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/turret_protected/ai) +"aeQ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"aeR" = (/obj/machinery/hologram/holopad,/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"aeS" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/ai) +"aeT" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/obj/machinery/light,/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-warninglinecorners (EAST)"; icon_state = "warninglinecorners"; dir = 4},/area/turret_protected/ai) +"aeU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/ai_monitored/storage/satellite) +"aeX" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aeY" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aeZ" = (/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"afa" = (/obj/structure/sign/pods{pixel_y = 32},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"afb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Gateway"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/gateway) +"afc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/gateway) +"afd" = (/obj/machinery/door/window{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"afe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"aff" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/gateway) +"afg" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afh" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afi" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afn" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afo" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/landmark/costume,/obj/effect/landmark/costume,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/ai_monitored/storage/satellite) +"afq" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) +"afr" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai) +"afs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) +"aft" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/button/door{id = "AIante"; name = "MiniSat Antechamber Turret Shutter Control"; pixel_x = 25; pixel_y = -6; req_access_txt = "17;65"},/turf/simulated/floor/plasteel{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai) +"afu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) +"afv" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai) +"afw" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) +"afx" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/turf/space,/area/space) +"afy" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/space,/area/space) +"afz" = (/obj/structure/transit_tube,/turf/space,/area/space) +"afA" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/simulated/floor/plating/airless,/area/space) +"afB" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless,/area/space) +"afC" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"afD" = (/obj/structure/transit_tube,/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) +"afE" = (/obj/structure/transit_tube,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"afF" = (/obj/structure/transit_tube/station/reverse,/obj/structure/transit_tube_pod{tag = "icon-pod (WEST)"; icon_state = "pod"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"afG" = (/obj/structure/transit_tube{dir = 8; icon_state = "Block"; tag = "icon-Block (NORTH)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"afH" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"afI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/black,/area/gateway) +"afJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/gateway) +"afK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/gateway) +"afL" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"afU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"afV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"afW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"afX" = (/obj/machinery/door/firedoor,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "AI Chamber"; req_access_txt = "16"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"afY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"afZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"aga" = (/obj/structure/transit_tube{tag = "icon-S-NE"; icon_state = "S-NE"},/turf/space,/area/space) +"agb" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/space,/area/space) +"agc" = (/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) +"agd" = (/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) +"age" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) +"agf" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) +"agg" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) +"agh" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/wall/r_wall,/area/hallway/primary/starboard) +"agi" = (/obj/machinery/camera/autoname{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"agj" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"agk" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "gateshutter"; name = "Gateway Access Shutter"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/gateway) +"agl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"agm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"agn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ago" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agq" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ags" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agu" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agy" = (/obj/machinery/door/airlock/maintenance_hatch{name = "turret maintenance hatch"; req_access_txt = "65"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) +"agz" = (/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agA" = (/obj/machinery/door/poddoor/shutters{id = "AIante"; name = "Minisat Antechamber Turret Shutter"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/turret_protected/ai) +"agC" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/ai) +"agD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "MiniSat Ante Turrets"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/turret_protected/ai) +"agE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"agH" = (/obj/structure/transit_tube{tag = "icon-N-S"; icon_state = "N-S"},/turf/space,/area/space) +"agI" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless,/area/space) +"agJ" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/plating/airless,/area/space) +"agK" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless,/area/space) +"agL" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"agM" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 0; tag = "icon-direction_med"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"agN" = (/turf/simulated/floor/plasteel{tag = "icon-darkgreen (NORTHWEST)"; icon_state = "darkgreen"; dir = 9},/area/hallway/primary/starboard) +"agO" = (/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = 0; pixel_y = 26; req_access_txt = "19"},/turf/simulated/floor/plasteel/black,/area/gateway) +"agP" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"agQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agR" = (/obj/structure/closet,/obj/item/device/assembly/prox_sensor{pixel_x = 2; pixel_y = -2},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agS" = (/obj/machinery/door/poddoor{id = "mixvent2"; name = "Mixer Room Vent"},/turf/simulated/floor/engine,/area/toxins/mixing) +"agT" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"agU" = (/obj/structure/window,/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/toxins/test_area) +"agV" = (/obj/structure/window,/obj/item/target,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"agW" = (/obj/structure/window,/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/toxins/test_area) +"agX" = (/obj/item/stack/rods,/turf/space,/area/space) +"agY" = (/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"agZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"aha" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"ahb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/turret_protected/ai) +"ahc" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) +"ahd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/turret_protected/ai) +"ahe" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"ahf" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/ai_monitored/storage/satellite) +"ahg" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) +"ahh" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) +"ahi" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/turf/simulated/floor/plating/airless,/area/space) +"ahj" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless,/area/space) +"ahk" = (/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"ahl" = (/obj/structure/transit_tube/station{dir = 4; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ahm" = (/turf/simulated/floor/plasteel{tag = "icon-darkgreen (WEST)"; icon_state = "darkgreen"; dir = 8},/area/hallway/primary/starboard) +"ahn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aho" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ahp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ahq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ahr" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ahs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aht" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"ahu" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahw" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ahy" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Toxins Mixing"},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ahz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ahA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ahB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) +"ahC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ahD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "waste_in"; pixel_y = 1},/turf/simulated/floor/engine,/area/toxins/mixing) +"ahE" = (/turf/simulated/floor/engine,/area/toxins/mixing) +"ahF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahH" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahI" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/device/radio,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahJ" = (/obj/structure/bed/stool,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ahK" = (/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/test_area) +"ahL" = (/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"ahM" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 5},/area/toxins/test_area) +"ahN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"ahO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ahP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"ahQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"ahR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/turret_protected/ai) +"ahS" = (/obj/machinery/light/small,/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/ai) +"ahT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/turret_protected/ai) +"ahU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"ahV" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) +"ahW" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/simulated/floor/plating/airless,/area/space) +"ahX" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) +"ahY" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"ahZ" = (/obj/structure/transit_tube{icon_state = "N-SW"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aia" = (/turf/simulated/floor/plasteel{tag = "icon-darkgreen (SOUTHWEST)"; icon_state = "darkgreen"; dir = 10},/area/hallway/primary/starboard) +"aib" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aic" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/darkpurple/corner,/area/hallway/primary/starboard) +"aid" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkpurple/side,/area/hallway/primary/starboard) +"aie" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/hallway/primary/starboard) +"aif" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aig" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aih" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/hallway/primary/starboard) +"aii" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aij" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"aik" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ail" = (/obj/machinery/atmospherics/components/trinary/mixer,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"aim" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ain" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/mixing) +"aio" = (/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/engine,/area/toxins/mixing) +"aip" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine,/area/toxins/mixing) +"aiq" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"air" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ais" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ait" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aiu" = (/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"aiv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"aiw" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"aix" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/space,/area/solar/auxport) +"aiy" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/auxport) +"aiz" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aiA" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aiB" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aiC" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"aiD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/ai_monitored/storage/satellite) +"aiE" = (/turf/simulated/wall,/area/turret_protected/aisat_interior) +"aiF" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber"; req_one_access_txt = "65"},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) +"aiG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber"; req_one_access_txt = "65"},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) +"aiH" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/space,/area/space) +"aiI" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) +"aiJ" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) +"aiK" = (/obj/structure/transit_tube{icon_state = "W-NE"},/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aiL" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aiM" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aiN" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aiO" = (/obj/structure/transit_tube{icon_state = "W-SE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aiP" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aiQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aiR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/hallway/primary/starboard) +"aiS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/hallway/primary/starboard) +"aiT" = (/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/hallway/primary/starboard) +"aiU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aiV" = (/turf/simulated/wall/r_wall,/area/toxins/server) +"aiW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"aiX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"aiY" = (/obj/machinery/atmospherics/components/binary/volume_pump{tag = "icon-volpump_map (WEST)"; icon_state = "volpump_map"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"aiZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plating,/area/toxins/mixing) +"aja" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) +"ajb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "mixing vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine,/area/toxins/mixing) +"ajc" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aje" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajf" = (/turf/simulated/wall,/area/maintenance/auxsolarport) +"ajg" = (/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Fore Port Solar Control"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"ajh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"aji" = (/obj/structure/rack,/obj/item/weapon/electronics/airlock{pixel_x = -3; pixel_y = -3},/obj/item/weapon/electronics/airlock,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ajj" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ajk" = (/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ajl" = (/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) +"ajm" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ajn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ajo" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{cell_type = 10000; dir = 1; name = "AI Antechamber APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable/orange,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) +"ajp" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/ai_monitored/storage/satellite) +"ajq" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/turret_protected/aisat_interior) +"ajr" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"ajs" = (/obj/machinery/computer/message_monitor,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"ajt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"aju" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/button/door{id = "AIante"; name = "MiniSat Antechamber Turret Shutter Control"; pixel_x = 0; pixel_y = 25; req_access_txt = "17;65"},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"ajv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"ajw" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"ajx" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/turret_protected/aisat_interior) +"ajy" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"ajz" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/sign/directions/security,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ajA" = (/turf/simulated/floor/plasteel{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/hallway/primary/starboard) +"ajB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/hallway/primary/starboard) +"ajC" = (/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/hallway/primary/starboard) +"ajD" = (/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/hallway/primary/starboard) +"ajE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ajF" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) +"ajG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 140; name = "server vent"; on = 1; pressure_checks = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) +"ajH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/server) +"ajI" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/camera{c_tag = "Research Server"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"ajJ" = (/obj/machinery/power/apc{dir = 1; name = "Server Room APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"ajK" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{current_temperature = 80; dir = 2; on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"ajL" = (/turf/simulated/wall,/area/toxins/server) +"ajM" = (/obj/structure/rack,/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/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ajN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ajO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ajP" = (/turf/simulated/floor/plasteel,/area/toxins/mixing) +"ajQ" = (/obj/structure/table,/obj/machinery/button/door{id = "mixvent2"; name = "Gas Mixing Vent Control"; pixel_x = 0; pixel_y = 0; req_access_txt = "55"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/mixing) +"ajR" = (/turf/simulated/wall/r_wall,/area/toxins/mixing) +"ajS" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/transfer_valve,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajU" = (/obj/structure/closet/firecloset,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajV" = (/obj/structure/closet/emcloset,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajW" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ajY" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ajZ" = (/obj/machinery/power/smes,/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"aka" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"akb" = (/obj/machinery/power/solar_control{id = "foreport"; name = "Fore Port Solar Control"; track = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"akc" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ake" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akg" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"},/area/shuttle/pod_2) +"akh" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) +"aki" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f10"},/area/shuttle/pod_2) +"akj" = (/turf/simulated/wall,/area/space) +"akk" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akl" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/turret_protected/aisat_interior) +"akn" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) +"ako" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/ai_monitored/storage/satellite) +"akp" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Lobby West"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/turret_protected/aisat_interior) +"akq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners"; icon_state = "darkpurplecorners"},/area/turret_protected/aisat_interior) +"akr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) +"aks" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/turret_protected/aisat_interior) +"akt" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"aku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"akv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"akw" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Lobby East"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/turret_protected/aisat_interior) +"akx" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/satellite) +"aky" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplatecorner"},/area/space) +"akz" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"akA" = (/turf/simulated/floor/plasteel{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/hallway/primary/starboard) +"akB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"akC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"akD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"akE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"akF" = (/obj/machinery/alarm/server{dir = 4; pixel_x = -22; pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) +"akG" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) +"akH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Room"; req_access_txt = "30"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"akI" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"akJ" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"akK" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"akL" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{current_temperature = 80; dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"akM" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"akN" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"akO" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"akP" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"akQ" = (/obj/machinery/light{dir = 1},/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"akR" = (/obj/machinery/camera{c_tag = "Toxins North"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"akS" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"akT" = (/turf/simulated/wall/r_wall,/area/toxins/lab) +"akU" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akV" = (/obj/machinery/power/apc{dir = 8; name = "Fore Port APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"akW" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"akX" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"akY" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"akZ" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/effect/decal/cleanable/cobweb,/obj/item/stack/rods,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ala" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alb" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alc" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard,/obj/effect/decal/cleanable/blood/old,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ald" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ale" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/shuttle/pod_2) +"alf" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) +"alg" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/turret_protected/aisat_interior) +"ali" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplefull"; icon_state = "darkpurplefull"},/area/turret_protected/aisat_interior) +"alj" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/turret_protected/aisat_interior) +"alk" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/turret_protected/aisat_interior) +"all" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/turret_protected/aisat_interior) +"alm" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/turret_protected/aisat_interior) +"aln" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/turret_protected/aisat_interior) +"alo" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"alp" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"alq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) +"alr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"als" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/turret_protected/aisat_interior) +"alt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/turret_protected/aisat_interior) +"alu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-darkpurplefull"; icon_state = "darkpurplefull"},/area/turret_protected/aisat_interior) +"alv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/turret_protected/aisat_interior) +"alw" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"alx" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plating/airless,/area/space) +"aly" = (/turf/simulated/floor/plasteel{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/hallway/primary/starboard) +"alz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"alA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/flora/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"alB" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"alC" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"alD" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) +"alE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; name = "server vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) +"alF" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/server) +"alG" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"alH" = (/obj/machinery/computer/rdservercontrol,/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"alI" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"alJ" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"alK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"alL" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"alM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/mixing) +"alN" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "mix to port"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing) +"alO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = 24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/mixing) +"alP" = (/obj/structure/sign/fire{pixel_y = 32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing) +"alQ" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "mixing vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) +"alR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) +"alS" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine,/area/toxins/lab) +"alT" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alU" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alV" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alX" = (/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"alY" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) +"alZ" = (/obj/item/clothing/suit/fire/atmos,/obj/item/stack/rods,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ama" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/turret_protected/aisat_interior) +"amb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/turret_protected/aisat_interior) +"amc" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/turret_protected/aisat_interior) +"amd" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"ame" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/turret_protected/aisat_interior) +"amf" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"amg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/transit_tube{dir = 4; icon_state = "Block"; tag = "icon-Block (NORTH)"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"amh" = (/obj/structure/transit_tube/station/reverse,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"ami" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"amj" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plasteel{tag = "icon-darkpurplecorners"; icon_state = "darkpurplecorners"},/area/turret_protected/aisat_interior) +"amk" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/turret_protected/aisat_interior) +"aml" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/obj/structure/lattice,/turf/space,/area/space) +"amm" = (/obj/structure/transit_tube{icon_state = "N-SW"},/obj/structure/lattice,/turf/space,/area/space) +"amn" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/lattice,/turf/space,/area/space) +"amo" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/simulated/floor/plating/airless,/area/space) +"amp" = (/obj/structure/transit_tube{icon_state = "W-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"amq" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"amr" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ams" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/toxins/storage) +"amt" = (/turf/simulated/wall/r_wall,/area/toxins/storage) +"amu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access = null; req_access_txt = "30"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"amv" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Toxins Mixing APC"; pixel_x = -25},/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amy" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amz" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amA" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amB" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amC" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"amD" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/mixing) +"amE" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/mixing) +"amF" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/turf/simulated/floor/engine,/area/toxins/mixing) +"amG" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2; frequency = 1449; id = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/toxins/mixing) +"amH" = (/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) +"amI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"amJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"amK" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"amL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"amM" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f5"},/area/shuttle/pod_2) +"amN" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2"; name = "escape pod 2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) +"amO" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f9"},/area/shuttle/pod_2) +"amP" = (/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"amQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/turret_protected/aisat_interior) +"amR" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) +"amS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) +"amT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/machinery/button/door{id = "teledoor"; name = "AI Satellite Teleport Shutters Control"; pixel_x = 0; pixel_y = -25; req_access_txt = "17;65"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) +"amU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) +"amV" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple"; icon_state = "darkpurple"},/area/turret_protected/aisat_interior) +"amW" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/turret_protected/aisat_interior) +"amX" = (/obj/structure/transit_tube,/turf/simulated/wall,/area/turret_protected/aisat_interior) +"amY" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) +"amZ" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/space,/area/space) +"ana" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"anb" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/floor/plating/airless,/area/space) +"anc" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"and" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"ane" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) +"anf" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) +"ang" = (/turf/simulated/wall,/area/toxins/storage) +"anh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/toxins/lab) +"ani" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"anj" = (/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) +"ank" = (/turf/simulated/wall,/area/toxins/mixing) +"anl" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"anm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/toxins/mixing) +"ann" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/toxins/mixing) +"ano" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"anp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/mixing) +"anq" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "port to mix"},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/mixing) +"anr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/mixing) +"ans" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = -24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing) +"ant" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = -20},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) +"anu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"anv" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"anw" = (/obj/effect/decal/cleanable/oil/streak,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"anx" = (/turf/simulated/wall,/area/hallway/primary/port) +"any" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"anz" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/hallway/primary/port) +"anA" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/hallway/primary/port) +"anB" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"anC" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) +"anD" = (/obj/structure/lattice/catwalk,/turf/space,/area/space) +"anE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) +"anF" = (/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) +"anG" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) +"anH" = (/obj/machinery/door/airlock/hatch{name = "Teleporter Room"; req_access_txt = "17;65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"anI" = (/obj/machinery/door/poddoor/shutters{id = "teledoor"; name = "AI Satellite Teleport Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"anJ" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/space,/area/space) +"anK" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"anL" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = 0; tag = "icon-direction_bridge (EAST)"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"anM" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/hallway/primary/starboard) +"anN" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"anO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"anP" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"anQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"anR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"anS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/toxins/storage) +"anT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"anU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"anV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"; tag = "icon-whitepurplecorner (WEST)"},/area/toxins/lab) +"anW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"anX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"anY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"anZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"aoa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"aob" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) +"aoc" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aod" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/toxins/mixing) +"aoe" = (/turf/simulated/wall,/area/toxins/test_area) +"aof" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aog" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aoh" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aoi" = (/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aoj" = (/obj/structure/sign/pods{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/hallway/primary/port) +"aok" = (/obj/structure/transit_tube{icon_state = "S-NE"},/obj/structure/sign/directions/science,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aol" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/port) +"aom" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/simulated/floor/plating/airless,/area/space) +"aon" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"aoo" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/turf/space,/area/space) +"aop" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"aoq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) +"aor" = (/obj/machinery/camera{c_tag = "MiniSat Teleporter"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"aos" = (/obj/machinery/button/door{id = "teledoor"; name = "AI Satellite Teleport Shutters Control"; pixel_x = 0; pixel_y = 25; req_access_txt = "17;65"},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"aot" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/turret_protected/aisat_interior) +"aou" = (/obj/structure/transit_tube{tag = "icon-N-S"; icon_state = "N-S"},/obj/structure/lattice,/turf/space,/area/space) +"aov" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/lattice,/turf/space,/area/space) +"aow" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/space,/area/space) +"aox" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/obj/structure/lattice,/turf/space,/area/space) +"aoy" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"aoz" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/hallway/primary/starboard) +"aoA" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aoB" = (/obj/machinery/power/apc{dir = 8; name = "Toxins Storage APC"; pixel_x = -25},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 4; network = list("SS13","RD")},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aoC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aoD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/mob/living/simple_animal/mouse,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aoE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aoF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aoG" = (/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aoH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"aoI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aoJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aoK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aoL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aoM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aoN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"aoO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/mixing) +"aoP" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoQ" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoR" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aoU" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/toxins/test_area) +"aoV" = (/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_y = 24},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) +"aoW" = (/obj/machinery/doppler_array{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) +"aoX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/test_area) +"aoY" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aoZ" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/hallway/primary/port) +"apa" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"apb" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/port) +"apc" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"apd" = (/obj/structure/transit_tube{tag = "icon-E-SW-NW"; icon_state = "E-SW-NW"},/turf/space,/area/space) +"ape" = (/obj/structure/transit_tube,/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"apf" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/space,/area/space) +"apg" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/space,/area/space) +"aph" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) +"api" = (/obj/machinery/light/small{dir = 8},/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) +"apj" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) +"apk" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) +"apl" = (/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) +"apm" = (/obj/machinery/light/small{dir = 4},/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/aisat_interior) +"apn" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) +"apo" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"app" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/hallway/primary/starboard) +"apq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"apr" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) +"aps" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) +"apt" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) +"apu" = (/obj/machinery/computer/area_atmos,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"apv" = (/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) +"apw" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) +"apx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/toxins/lab) +"apy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"apz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"apA" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"apB" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"apC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"apD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"apE" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/toxins/mixing) +"apF" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/toxins/test_area) +"apG" = (/turf/simulated/floor/plasteel,/area/toxins/test_area) +"apH" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 8; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/test_area) +"apI" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"apJ" = (/turf/simulated/wall,/area/maintenance/electrical) +"apK" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"apL" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"apM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"apN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/port) +"apO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"apP" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/hallway/primary/port) +"apQ" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"apR" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/port) +"apS" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"apT" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/space,/area/space) +"apU" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/space,/area/space) +"apV" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) +"apW" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/aisat_interior) +"apX" = (/obj/machinery/teleport/station,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/aisat_interior) +"apY" = (/obj/machinery/teleport/hub,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/turret_protected/aisat_interior) +"apZ" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/space) +"aqa" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aqb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aqc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/starboard) +"aqd" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"aqe" = (/turf/simulated/wall,/area/toxins/lab) +"aqf" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"aqg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"aqi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/mixing) +"aqj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aql" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_x = 30; pixel_y = 0},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqm" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/toxins/test_area) +"aqn" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning,/area/toxins/test_area) +"aqo" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/toxins/test_area) +"aqp" = (/obj/item/device/flashlight/lamp,/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"aqq" = (/obj/structure/bed/chair,/obj/item/target/syndicate,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"aqr" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/electrical) +"aqs" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/maintenance/electrical) +"aqt" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/bluegrid,/area/maintenance/electrical) +"aqu" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aqv" = (/obj/structure/bed/stool,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aqw" = (/obj/item/clothing/under/color/grey,/obj/effect/decal/remains/human,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/obj/item/weapon/throwing_star,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aqx" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aqy" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aqz" = (/obj/machinery/power/apc{dir = 8; name = "Port Primary Hall APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aqA" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aqB" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"aqC" = (/obj/structure/transit_tube{icon_state = "E-NW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/port) +"aqD" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/plating/airless,/area/space) +"aqE" = (/obj/structure/transit_tube{icon_state = "D-NW"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"aqF" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/turf/space,/area/space) +"aqG" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) +"aqH" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-l"; icon_state = "stairs-l"},/area/hallway/primary/starboard) +"aqI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-stairs-m"; icon_state = "stairs-m"},/area/hallway/primary/starboard) +"aqJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-r"; icon_state = "stairs-r"},/area/hallway/primary/starboard) +"aqK" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqM" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqN" = (/obj/structure/table,/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/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Research Lab"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqO" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqP" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqQ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-07"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-07"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/lab) +"aqS" = (/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"aqT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aqU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"aqV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) +"aqW" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"aqZ" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/camera{c_tag = "Toxins Lab West"; dir = 8; network = list("SS13","RD"); pixel_y = 0},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ara" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"arb" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"arc" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 0; pixel_y = 3},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ard" = (/obj/structure/closet,/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"are" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) +"arf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/toxins/test_area) +"arg" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/toxins/test_area) +"arh" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/turf/simulated/floor/plating,/area/toxins/test_area) +"ari" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"arj" = (/obj/item/weapon/reagent_containers/food/snacks/sugarcookie{pixel_x = 8},/obj/structure/table,/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"ark" = (/turf/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/toxins/test_area) +"arl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"arm" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) +"arn" = (/turf/simulated/floor/plating,/area/maintenance/electrical) +"aro" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"arp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"arq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"arr" = (/obj/structure/table,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ars" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"art" = (/turf/simulated/wall,/area/storage/tools) +"aru" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/storage/tools) +"arv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"arw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"arx" = (/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/hallway/primary/port) +"ary" = (/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/space) +"arz" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"arA" = (/obj/structure/transit_tube{icon_state = "N-SW"},/turf/space,/area/space) +"arB" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) +"arC" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) +"arD" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) +"arE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) +"arF" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/transport) +"arG" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/primary/starboard) +"arH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) +"arI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) +"arJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) +"arK" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) +"arL" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/device/flashlight,/obj/structure/closet/crate,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Shield Storage"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) +"arM" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/crowbar,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) +"arN" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"arO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"arP" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/toxins/lab) +"arQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) +"arR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/toxins/lab) +"arS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"arT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"arU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"arV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"arW" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"arX" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"arY" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"arZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asa" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asc" = (/obj/item/weapon/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"asd" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ase" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"asf" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Bomb Test Site"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/turf/simulated/floor/plating/airless,/area/toxins/test_area) +"asg" = (/obj/machinery/recharge_station,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"ash" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"asi" = (/obj/machinery/power/port_gen/pacman,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"asj" = (/obj/machinery/power/apc{dir = 1; name = "Electrical Maintenance APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"ask" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"asl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"asm" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"asn" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aso" = (/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"asp" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"asq" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plasteel{dir = 9; icon_state = "yellow"},/area/storage/tools) +"asr" = (/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/storage/tools) +"ass" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/storage/tools) +"ast" = (/obj/structure/closet/toolcloset,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/storage/tools) +"asu" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/storage/tools) +"asv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"asw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/hallway/primary/port) +"asx" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/space,/area/space) +"asy" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f9"},/area/shuttle/transport) +"asz" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"asA" = (/obj/machinery/computer/shuttle/ferry/request,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"asB" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"asC" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"asD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"asE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"asF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"asG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/lab) +"asH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/lab) +"asI" = (/turf/simulated/floor/plasteel,/area/toxins/lab) +"asJ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/lab) +"asK" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) +"asL" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) +"asM" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) +"asN" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"asO" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"asP" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"asQ" = (/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asR" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asS" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asT" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"asV" = (/obj/machinery/power/apc{dir = 2; name = "Testing Lab APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"asW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"asX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"asY" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"asZ" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/detective,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ata" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"atb" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/medical_cloning,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"atc" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/research_and_development,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"atd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ate" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atf" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"atg" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/electrical) +"ath" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) +"ati" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) +"atj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"atk" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"atl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atn" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ato" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/storage/tools) +"atq" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/device/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/storage/tools) +"atr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) +"ats" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/storage/tools) +"att" = (/turf/simulated/floor/plasteel,/area/storage/tools) +"atu" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Aux Storage"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/storage/tools) +"atv" = (/obj/effect/landmark/costume/madscientist,/obj/effect/decal/remains/human,/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atw" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"atx" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"aty" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; roundstart_move = "ferry_away"; travelDir = 180; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/space; width = 5},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"atz" = (/obj/machinery/door/airlock/external{id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"atA" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/hallway/primary/starboard) +"atB" = (/obj/machinery/door/airlock/external{name = "Transport Airlock"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"atC" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"atD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Shield Storage"; req_access_txt = "0"; req_one_access_txt = "17;19"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/lab) +"atE" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/lab) +"atF" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/plasteel,/area/toxins/lab) +"atG" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/plasteel,/area/toxins/lab) +"atH" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"; tag = "icon-whitepurplecorner (WEST)"},/area/toxins/lab) +"atI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"atJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/toxins/lab) +"atK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"atL" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"atM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"atN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"atO" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/science) +"atP" = (/turf/simulated/wall/r_wall,/area/toxins/misc_lab) +"atQ" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"atR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"atS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atT" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/electrical) +"atU" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/electrical) +"atV" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/electrical) +"atW" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/electrical) +"atX" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/device/camera,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"atY" = (/obj/structure/door_assembly/door_assembly_med,/obj/structure/barricade/wooden,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"atZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aua" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aud" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aue" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/storage/tools) +"aug" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "yellow"},/area/storage/tools) +"auh" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/storage/tools) +"aui" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/storage/tools) +"auj" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/storage/tools) +"auk" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/storage/tools) +"aul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-l"; icon_state = "stairs-l"},/area/hallway/primary/port) +"aum" = (/turf/simulated/floor/plasteel{tag = "icon-stairs-m"; icon_state = "stairs-m"},/area/hallway/primary/port) +"aun" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-r"; icon_state = "stairs-r"},/area/hallway/primary/port) +"auo" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) +"aup" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/transport) +"auq" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"aur" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) +"aus" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/toxins/lab) +"aut" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) +"auu" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) +"auv" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"auw" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aux" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"auy" = (/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/button/door{id = "rnd"; name = "Research Shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"auz" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/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/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"auA" = (/obj/machinery/power/apc{dir = 2; name = "Research Lab APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"auB" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"auC" = (/turf/simulated/wall,/area/security/checkpoint/science) +"auD" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/obj/machinery/alarm{pixel_y = 25},/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint/science) +"auE" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/machinery/camera{c_tag = "Research Security Post"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/science) +"auF" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light_switch{pixel_y = 23},/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/science) +"auG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/science) +"auH" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"auI" = (/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"auJ" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/alien,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"auK" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"auL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auO" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/electrical) +"auQ" = (/obj/machinery/power/terminal,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"auR" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"auS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"auT" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"auU" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"auV" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/machinery/iv_drip,/obj/item/weapon/retractor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auW" = (/obj/machinery/sleeper{dir = 2; icon_state = "sleeper-open"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auY" = (/obj/structure/table/glass,/obj/item/weapon/storage/bag/trash,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"auZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/port) +"ava" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tools) +"avb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) +"avc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/tools) +"avd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"ave" = (/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"avf" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port) +"avg" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/transport) +"avh" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/primary/starboard) +"avi" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"avj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/toxins/lab) +"avk" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/lab) +"avl" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/toxins/lab) +"avm" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{dir = 1; name = "Research and Development Desk"; req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/turf/simulated/floor/plating,/area/toxins/lab) +"avn" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"avo" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"avp" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/science) +"avq" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/turf/simulated/floor/plasteel,/area/security/checkpoint/science) +"avr" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 30; pixel_y = 0},/obj/item/device/radio/off,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/science) +"avs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"avt" = (/obj/machinery/camera{c_tag = "Firing Range"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"avu" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"avv" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/target/syndicate,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"avw" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/robotics_cyborgs,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"avx" = (/obj/structure/bed/stool,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avB" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/electrical) +"avD" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"avE" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"avF" = (/obj/item/stack/rods{amount = 50},/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"avG" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) +"avH" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avI" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/obj/item/weapon/kitchen/knife,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avJ" = (/obj/structure/table/glass,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"avK" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/port) +"avL" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) +"avM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) +"avN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) +"avO" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) +"avP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port) +"avQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port) +"avR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port) +"avS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/port) +"avT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) +"avU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port) +"avV" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/starboard) +"avW" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) +"avX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) +"avY" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) +"avZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) +"awa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) +"awb" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) +"awc" = (/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) +"awd" = (/turf/simulated/floor/plasteel{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/hallway/primary/starboard) +"awe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Research Entrance"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/toxins/lab) +"awf" = (/obj/structure/flora/kirbyplants{icon_state = "plant-09"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-09"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/toxins/lab) +"awg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/lab) +"awh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"awi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"awj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"awk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Post - Research Division"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science) +"awl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/science) +"awm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint/science) +"awn" = (/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/science) +"awo" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"awp" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"awq" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"awr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aws" = (/turf/simulated/wall/r_wall,/area/medical/virology) +"awt" = (/turf/simulated/wall,/area/medical/virology) +"awu" = (/turf/simulated/wall,/area/medical/genetics_cloning) +"awv" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"aww" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"awx" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"awy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"awz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"awA" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/space,/area/space) +"awB" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 12},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awG" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"awI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/hallway/primary/starboard) +"awJ" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"awK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"awL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"awM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"awN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/science) +"awO" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/security/checkpoint/science) +"awP" = (/obj/machinery/computer/secure_data,/obj/machinery/power/apc{dir = 2; name = "Science Security APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) +"awQ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/science) +"awR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/security/checkpoint/science) +"awS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"awT" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"awU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/misc_lab) +"awV" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/misc_lab) +"awW" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"awX" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/misc_lab) +"awY" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"awZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axa" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/virology) +"axb" = (/obj/machinery/computer/pandemic,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHWEST)"; icon_state = "whitegreen"; dir = 9},/area/medical/virology) +"axc" = (/obj/machinery/smartfridge/chemistry/virology,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) +"axd" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex,/obj/machinery/requests_console{department = "Virology"; name = "Virology RC"; pixel_x = 0; pixel_y = 32},/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) +"axe" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{density = 0; dir = 1; pixel_x = 0; pixel_y = 30},/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) +"axf" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Virology APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; dir = 5},/area/medical/virology) +"axg" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/virology) +"axh" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/grass,/area/medical/virology) +"axi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/virology) +"axj" = (/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/genetics_cloning) +"axk" = (/obj/machinery/light/small{dir = 1},/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/genetics_cloning) +"axl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/genetics_cloning) +"axm" = (/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/hallway/primary/port) +"axn" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port) +"axo" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"axp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"axq" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"axs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"axt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/port) +"axu" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/space,/area/space) +"axv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/starboard) +"axw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"axx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"axy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) +"axz" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/starboard) +"axA" = (/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"axB" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"axC" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "purple"},/area/hallway/primary/starboard) +"axD" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) +"axE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitepurple"},/area/toxins/lab) +"axF" = (/obj/machinery/camera{c_tag = "Test Area"; dir = 4; network = list("SS13")},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"axG" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) +"axH" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"axI" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) +"axM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"axQ" = (/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"axR" = (/turf/simulated/floor/grass,/area/medical/virology) +"axS" = (/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/medical/virology) +"axT" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"axU" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"axV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/hallway/primary/port) +"axW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/primary/port) +"axX" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/hallway/primary/port) +"axY" = (/turf/simulated/wall,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"axZ" = (/obj/structure/girder,/turf/simulated/floor/plating/airless,/area/space) +"aya" = (/turf/simulated/wall,/area/construction) +"ayb" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"ayc" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"ayd" = (/turf/simulated/wall/r_wall,/area/crew_quarters/hor) +"aye" = (/turf/simulated/wall,/area/crew_quarters/hor) +"ayf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"ayg" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"ayh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"ayi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"ayj" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"ayk" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/misc_lab) +"ayl" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/misc_lab) +"aym" = (/obj/item/stack/sheet/cardboard,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ayn" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ayo" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ayp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ayq" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) +"ayr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) +"ays" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ayt" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ayu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ayv" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"ayw" = (/turf/simulated/floor/grass,/area/medical/genetics_cloning) +"ayx" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"ayy" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) +"ayz" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"ayA" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayB" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayC" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayD" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayE" = (/obj/structure/rack,/obj/item/weapon/storage/fancy/cigarettes,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayF" = (/obj/structure/rack,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"ayH" = (/obj/structure/lattice,/turf/space,/area/construction) +"ayI" = (/turf/space,/area/construction) +"ayJ" = (/turf/simulated/floor/plasteel,/area/construction) +"ayK" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel/darkred,/area/hallway/primary/starboard) +"ayL" = (/turf/simulated/floor/plasteel/darkred,/area/hallway/primary/starboard) +"ayM" = (/obj/structure/rack,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/hor) +"ayN" = (/obj/structure/rack,/obj/item/device/aicard,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/hor) +"ayO" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/hor) +"ayP" = (/obj/machinery/computer/aifixer,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = -2; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"ayQ" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"ayR" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/structure/table,/obj/machinery/power/apc{dir = 1; name = "RD Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"ayS" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"ayT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/hor) +"ayU" = (/turf/simulated/wall,/area/toxins/misc_lab) +"ayV" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"ayW" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ayX" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ayY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"ayZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) +"aza" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"azb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"azc" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"azd" = (/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) +"aze" = (/obj/machinery/door/airlock/glass_research{name = "Monkey Pen"; req_access_txt = "5; 9"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"azf" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) +"azg" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"azh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"azi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"azj" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"azk" = (/obj/item/clothing/glasses/welding,/turf/simulated/floor/plating/airless,/area/space) +"azl" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/darkred,/area/hallway/primary/starboard) +"azm" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/crew_quarters/hor) +"azn" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/crew_quarters/hor) +"azo" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/crew_quarters/hor) +"azp" = (/obj/machinery/computer/mecha,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"azq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"azr" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"azs" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"azt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/hor) +"azu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/explab) +"azv" = (/obj/structure/closet/emcloset{pixel_x = -2},/turf/simulated/floor/plasteel,/area/toxins/explab) +"azw" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/item/device/radio/off,/turf/simulated/floor/plasteel,/area/toxins/explab) +"azx" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 6},/turf/simulated/floor/plasteel,/area/toxins/explab) +"azy" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Experimentor Lab"; dir = 2; network = list("SS13","RD")},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/toxins/explab) +"azz" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/experimentor,/turf/simulated/floor/plasteel,/area/toxins/explab) +"azA" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/engine,/area/toxins/explab) +"azB" = (/turf/simulated/floor/engine,/area/toxins/explab) +"azC" = (/turf/simulated/wall/r_wall,/area/toxins/explab) +"azD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"azE" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"azF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"azG" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"azH" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"azI" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/cardhand,/obj/item/toy/cards/cardhand,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"azJ" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"azK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"azL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"azM" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) +"azN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) +"azO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"azP" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"azQ" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/medical/genetics_cloning) +"azR" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/medical/genetics_cloning) +"azS" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/medical/genetics_cloning) +"azT" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) +"azU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"azV" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plating/airless,/area/space) +"azW" = (/obj/item/weapon/weldingtool/largetank,/turf/simulated/floor/plating/airless,/area/space) +"azX" = (/obj/structure/transit_tube{tag = "icon-S-NW"; icon_state = "S-NW"},/turf/space,/area/space) +"azY" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/crew_quarters/hor) +"azZ" = (/obj/machinery/suit_storage_unit/rd,/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/hor) +"aAa" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/crew_quarters/hor) +"aAb" = (/obj/machinery/computer/robotics,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAe" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/hor) +"aAg" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"aAh" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"aAi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aAj" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aAk" = (/obj/machinery/computer/rdconsole/experiment,/turf/simulated/floor/plasteel,/area/toxins/explab) +"aAl" = (/obj/machinery/r_n_d/experimentor,/turf/simulated/floor/engine,/area/toxins/explab) +"aAm" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine,/area/toxins/explab) +"aAn" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aAo" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aAp" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aAq" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aAr" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aAs" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aAt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aAu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aAv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology) +"aAw" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aAx" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aAy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aAz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) +"aAA" = (/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aAB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aAC" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/machinery/newscaster{dir = 4; pixel_x = 30},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"aAD" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics_cloning) +"aAE" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aAF" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) +"aAG" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aAH" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"aAI" = (/obj/item/stack/sheet/metal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aAJ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aAK" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/space,/area/space) +"aAL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"aAM" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/crew_quarters/hor) +"aAN" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/crew_quarters/hor) +"aAO" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/crew_quarters/hor) +"aAP" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAQ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAR" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAS" = (/obj/machinery/door/airlock/glass_command{name = "Research Director"; req_access_txt = "30"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aAT" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"aAU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aAV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"aAW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/toxins/explab) +"aAX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aAY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aAZ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/power/apc{dir = 4; name = "Experimentation Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBb" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aBc" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aBd" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"aBe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aBf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aBg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aBh" = (/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/glass,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) +"aBi" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aBj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 13},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aBk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aBl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"aBm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/hor) +"aBn" = (/obj/structure/filingcabinet/chestdrawer,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBp" = (/obj/structure/closet/secure_closet/RD,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBq" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBr" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("SS13","RD")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBs" = (/obj/machinery/hologram/holopad,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBt" = (/obj/machinery/light_switch{pixel_y = -23},/obj/structure/flora/kirbyplants/dead,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"aBu" = (/turf/simulated/wall,/area/toxins/explab) +"aBv" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBw" = (/obj/structure/closet/radiation,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBx" = (/obj/machinery/light,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBy" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBz" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/toxins/explab) +"aBA" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/engine,/area/toxins/explab) +"aBB" = (/obj/machinery/camera{c_tag = "Experimentor Lab Chamber"; dir = 1; network = list("SS13","RD")},/obj/machinery/light,/obj/structure/sign/nosmoking_2{pixel_y = -32},/turf/simulated/floor/engine,/area/toxins/explab) +"aBC" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aBD" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aBE" = (/obj/item/weapon/storage/secure/safe{dir = 4; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Virology Break Room"; dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) +"aBF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aBG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aBH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aBI" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"aBJ" = (/obj/machinery/computer/scan_consolenew,/obj/machinery/camera{c_tag = "Genetics Lab"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics_cloning) +"aBK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aBL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aBM" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) +"aBN" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"aBO" = (/obj/item/stack/rods,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aBP" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) +"aBQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/construction) +"aBR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) +"aBS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/crew_quarters/hor) +"aBT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/hor) +"aBU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/hor) +"aBV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/crew_quarters/hor) +"aBW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"aBX" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aBY" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aBZ" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/space) +"aCa" = (/obj/structure/table,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCb" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCc" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCd" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCe" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/pen/red,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"aCf" = (/obj/machinery/dna_scannernew,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics_cloning) +"aCg" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aCh" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aCi" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics_cloning) +"aCj" = (/obj/item/weapon/weldingtool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aCk" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) +"aCl" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/lattice,/turf/space,/area/space) +"aCm" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"aCn" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) +"aCo" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/lattice,/turf/space,/area/space) +"aCp" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/construction) +"aCq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/construction) +"aCr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) +"aCs" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) +"aCt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) +"aCu" = (/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access_txt = "32"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) +"aCv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) +"aCw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aCx" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "purplecorner"},/area/hallway/primary/starboard) +"aCy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/toxins/mineral_storeroom) +"aCz" = (/turf/simulated/wall/r_wall,/area/toxins/mineral_storeroom) +"aCA" = (/obj/machinery/constructable_frame/machine_frame,/obj/item/weapon/wirecutters,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aCB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aCC" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 34},/obj/item/stack/sheet/glass,/obj/item/stack/sheet/metal{amount = 34},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/camera{c_tag = "Research Storage"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aCD" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/power/apc{dir = 8; name = "Mineral Storage APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aCE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/toxins/lab) +"aCF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/toxins/lab) +"aCG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) +"aCH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/toxins/lab) +"aCI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/xenobiology) +"aCJ" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCK" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCL" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCM" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCN" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/weapon/extinguisher,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCO" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCP" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCQ" = (/obj/machinery/monkey_recycler,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCR" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCS" = (/obj/machinery/smartfridge/extract,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aCT" = (/turf/simulated/wall/r_wall,/area/toxins/xenobiology) +"aCU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aCV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCW" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCX" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCY" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aCZ" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aDa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation C"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aDb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aDc" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/medical/virology) +"aDd" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/table/glass,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/medical/genetics_cloning) +"aDe" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics_cloning) +"aDf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics_cloning) +"aDg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics_cloning) +"aDh" = (/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table/glass,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHEAST)"; icon_state = "whitepurple"; dir = 6},/area/medical/genetics_cloning) +"aDi" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) +"aDj" = (/turf/simulated/floor/plating,/area/construction) +"aDk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/construction) +"aDl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/construction) +"aDm" = (/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) +"aDn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aDo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aDp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/toxins/mineral_storeroom) +"aDq" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Research"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/mineral_storeroom) +"aDr" = (/obj/machinery/door/window/eastleft{name = "Medical Delivery"; req_access_txt = "5"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/mineral_storeroom) +"aDs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aDt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aDu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aDv" = (/obj/machinery/door/airlock/research{name = "Research Division Storage"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aDw" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/toxins/lab) +"aDx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aDy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aDz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) +"aDA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aDB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aDC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aDD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aDE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aDF" = (/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aDG" = (/obj/structure/rack,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aDH" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aDI" = (/obj/structure/window/reinforced,/turf/space,/area/space) +"aDJ" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "o2_in"},/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/space) +"aDK" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aDL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; dir = 10},/area/medical/virology) +"aDN" = (/obj/structure/closet/wardrobe/virology_white,/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) +"aDO" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = -22},/obj/machinery/light_switch{pixel_x = -4; pixel_y = -24},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) +"aDP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) +"aDQ" = (/obj/machinery/iv_drip,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; dir = 6},/area/medical/virology) +"aDR" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aDS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) +"aDT" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"aDU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aDV" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/starboard) +"aDW" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "purple"},/area/toxins/mineral_storeroom) +"aDX" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aDY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aDZ" = (/obj/machinery/constructable_frame/machine_frame,/obj/item/stack/cable_coil,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aEa" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mineral_storeroom) +"aEb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/lab) +"aEc" = (/obj/machinery/light,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) +"aEd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) +"aEe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) +"aEf" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEj" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEl" = (/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) +"aEm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aEn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aEo" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aEp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aEq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aEr" = (/turf/simulated/wall,/area/maintenance/disposal) +"aEs" = (/obj/machinery/mass_driver{dir = 4; id = "garbagedriver"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aEt" = (/turf/simulated/floor/plating,/area/maintenance/disposal) +"aEu" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aEv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aEw" = (/turf/simulated/wall/r_wall,/area/medical/cmo) +"aEx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "closed"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aEy" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics_cloning) +"aEz" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (NORTH)"; icon_state = "warnwhitecorner"; dir = 1},/area/medical/genetics_cloning) +"aEA" = (/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 2; network = list("SS13")},/obj/structure/table,/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aEB" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aEC" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aED" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aEE" = (/obj/structure/rack,/obj/item/stack/sheet/glass{amount = 50},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aEF" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) +"aEG" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/construction) +"aEH" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/construction) +"aEI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) +"aEJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/construction) +"aEK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/construction) +"aEL" = (/obj/machinery/power/apc{dir = 2; name = "Construction Area APC"; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable,/turf/simulated/floor/plasteel,/area/construction) +"aEM" = (/obj/machinery/status_display,/turf/simulated/wall,/area/hallway/primary/starboard) +"aEN" = (/turf/simulated/wall,/area/toxins/mineral_storeroom) +"aEO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/toxins/mineral_storeroom) +"aEP" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aEQ" = (/turf/simulated/wall,/area/toxins/xenobiology) +"aER" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/camera{c_tag = "Xenobiology"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aES" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aET" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEV" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEW" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEX" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aEY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) +"aEZ" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/toxins/xenobiology) +"aFa" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aFb" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area/space) +"aFc" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; layer = 2.5},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aFd" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) +"aFe" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) +"aFf" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) +"aFg" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/reagent_containers/glass/bottle/formaldehyde,/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aFh" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/reagent_containers/glass/bottle/ammonia,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/glass/bottle/diethylamine,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aFi" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aFj" = (/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aFk" = (/obj/item/weapon/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/obj/structure/table/glass,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 23},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aFl" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aFm" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 6},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aFn" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/virology) +"aFo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/virology) +"aFp" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/virology) +"aFq" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aFr" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) +"aFs" = (/obj/structure/table,/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aFt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aFu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aFv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aFw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area/space) +"aFx" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 50; pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aFy" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/rack,/obj/item/weapon/storage/firstaid/o2,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aFz" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aFA" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) +"aFB" = (/obj/structure/closet/crate,/obj/item/stack/sheet/plasteel{amount = 50},/turf/simulated/floor/plating,/area/construction) +"aFC" = (/obj/structure/closet/crate,/obj/item/stack/rods,/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plating,/area/construction) +"aFD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/construction) +"aFE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"aFF" = (/turf/simulated/wall/r_wall,/area/assembly/robotics) +"aFG" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFH" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFI" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFJ" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFK" = (/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/obj/structure/rack{dir = 8; layer = 2.9},/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/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFL" = (/obj/structure/flora/kirbyplants{icon_state = "plant-07"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-07"},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aFN" = (/turf/simulated/wall,/area/assembly/robotics) +"aFO" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter"; network = list("Xeno"); pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aFP" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aFQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aFR" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/toxins/xenobiology) +"aFS" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aFT" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Pens"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aFU" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/toxins/xenobiology) +"aFV" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; layer = 2.5},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; layer = 3; name = "disposal exit vent"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aFW" = (/obj/structure/closet/crate,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aFX" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aFY" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aFZ" = (/obj/machinery/door/airlock/maintenance{name = "Chemical Storage"; req_access_txt = "12; 5; 33"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aGa" = (/obj/structure/table/glass,/obj/item/weapon/storage/secure/briefcase,/obj/machinery/camera{c_tag = "CMO's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aGb" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aGc" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aGd" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/virology) +"aGe" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/virology) +"aGf" = (/obj/machinery/computer/cloning,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGi" = (/obj/structure/closet/wardrobe/white,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Cloning Lab APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGj" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"aGk" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"aGl" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGm" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGn" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/turf/simulated/floor/plating,/area/construction) +"aGo" = (/obj/machinery/power/apc{dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aGp" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aGq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aGr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aGs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aGt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aGu" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) +"aGv" = (/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) +"aGw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) +"aGx" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) +"aGy" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aGz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aGA" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aGB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/xenobiology) +"aGC" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology) +"aGD" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aGE" = (/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aGF" = (/obj/machinery/mineral/stacking_unit_console{dir = 2; machinedir = 8},/turf/simulated/wall,/area/maintenance/disposal) +"aGG" = (/obj/machinery/conveyor{dir = 6; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aGH" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aGI" = (/obj/machinery/conveyor{dir = 9; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aGJ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aGK" = (/mob/living/simple_animal/pet/cat/Runtime,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aGL" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/virology) +"aGM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/virology) +"aGN" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/virology) +"aGO" = (/obj/machinery/clonepod,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) +"aGQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGS" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aGT" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGU" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"aGV" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGW" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aGZ" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/obj/structure/lattice/catwalk,/turf/space,/area/space) +"aHa" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 50; pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aHb" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/rack,/obj/item/weapon/storage/firstaid/o2,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aHc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aHd" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/starboard) +"aHe" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) +"aHf" = (/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4; network = list("SS13","RD")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aHg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aHh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aHj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aHk" = (/obj/structure/table,/obj/item/drone_shell,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aHl" = (/obj/item/weapon/wrench,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) +"aHm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 2},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) +"aHn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) +"aHo" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) +"aHp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) +"aHq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/toxins/xenobiology) +"aHr" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aHs" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/xenobiology) +"aHt" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/xenobiology) +"aHu" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aHv" = (/obj/effect/spawner/lootdrop{loot = list(/obj/effect/decal/remains/xeno = 49, /obj/structure/alien/egg = 1); name = "2% chance xeno egg spawner"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aHw" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aHx" = (/obj/item/conveyor_switch_construct{tag = "garbage"},/turf/simulated/floor/plating{icon_state = "warnplatecorner"},/area/maintenance/disposal) +"aHy" = (/obj/structure/window/reinforced,/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/disposal) +"aHz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/disposal) +"aHA" = (/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (NORTH)"; icon_state = "bulb-construct-stage1"; dir = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aHB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "CM Office APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aHC" = (/obj/structure/table/glass,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aHD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aHE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aHF" = (/obj/machinery/doorButtons/access_button{dir = 8; idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 26; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "closed"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"aHG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics_cloning) +"aHH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/genetics_cloning) +"aHI" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHJ" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen/red,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/space,/area/space) +"aHL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHM" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) +"aHN" = (/obj/structure/window/reinforced,/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"aHO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) +"aHQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHS" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/camera{c_tag = "Port Maintence Bubble"; dir = 8; network = list("MINE")},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aHT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/lattice,/turf/space,/area/space) +"aHU" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/lattice/catwalk,/turf/space,/area/space) +"aHV" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/lattice/catwalk,/turf/space,/area/space) +"aHW" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aHX" = (/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aHY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/space) +"aIa" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"aIb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) +"aIc" = (/obj/structure/lattice,/obj/structure/window/reinforced,/turf/space,/area/space) +"aId" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/construction) +"aIe" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"aIf" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/hallway/primary/starboard) +"aIg" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aIh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aIi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aIj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aIk" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/assembly/robotics) +"aIl" = (/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/assembly/robotics) +"aIm" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/assembly/robotics) +"aIn" = (/obj/machinery/shieldwallgen{req_access = list(55)},/obj/structure/cable,/turf/simulated/floor/plating,/area/toxins/xenobiology) +"aIo" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aIp" = (/obj/machinery/door/window/southleft{dir = 1; name = "Test Chamber"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aIq" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aIr" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) +"aIs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/xenobiology) +"aIt" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aIu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aIv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aIw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aIx" = (/obj/machinery/power/apc{dir = 8; name = "Disposal APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aIy" = (/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplate"; luminosity = 2},/area/maintenance/disposal) +"aIz" = (/obj/machinery/conveyor{dir = 5; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aIA" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/recycler,/turf/simulated/floor/plating,/area/maintenance/disposal) +"aIB" = (/obj/machinery/conveyor{dir = 10; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aIC" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/abandoned) +"aID" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/abandoned) +"aIE" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dheight = 0; dir = 2; dwidth = 11; height = 22; id = "whiteship"; name = "NT Medical Ship"; roundstart_move = "whiteship_away"; travelDir = 180; width = 35},/obj/docking_port/stationary{dir = 2; dwidth = 11; height = 22; id = "whiteship_home"; name = "SS13 Arrival Docking"; width = 35},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aIF" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/abandoned) +"aIG" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aIH" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aII" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aIJ" = (/obj/machinery/iv_drip,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aIK" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = -29},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/structure/table/glass,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aIL" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aIM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aIN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aIO" = (/obj/machinery/suit_storage_unit/cmo,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/cmo) +"aIP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/medical/cmo) +"aIQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) +"aIR" = (/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aIS" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aIT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aIU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aIV" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) +"aIW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aIX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port) +"aIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/port) +"aIZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/port) +"aJa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJc" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJd" = (/obj/structure/closet/cabinet,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJe" = (/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJf" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJh" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJi" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"aJj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) +"aJk" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJl" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aJm" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"aJn" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aJo" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aJp" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aJq" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aJr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aJs" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aJt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating/airless,/area/space) +"aJu" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/space) +"aJv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating/airless,/area/space) +"aJw" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) +"aJx" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) +"aJy" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/construction) +"aJz" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"aJA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"aJB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aJC" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 4; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/simulated/floor/plating,/area/assembly/robotics) +"aJD" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) +"aJF" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/assembly/robotics) +"aJG" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) +"aJH" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = -3; pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aJI" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aJJ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/toxins/xenobiology) +"aJK" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aJL" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aJM" = (/obj/item/weapon/shard,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aJN" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/effect/decal/cleanable/blood/old,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aJO" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aJP" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aJQ" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aJR" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplate"; luminosity = 2},/area/maintenance/disposal) +"aJS" = (/obj/machinery/conveyor{tag = "icon-conveyor-1 (EAST)"; icon_state = "conveyor-1"; dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/maintenance/disposal) +"aJT" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating,/area/maintenance/disposal) +"aJU" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (EAST)"; icon_state = "propulsion_l"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"aJV" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/abandoned) +"aJW" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/abandoned) +"aJX" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aJY" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aJZ" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aKa" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) +"aKb" = (/obj/machinery/light,/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 0},/obj/machinery/computer/med_data/laptop,/obj/structure/table/glass,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aKc" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aKd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aKe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) +"aKf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/cmo) +"aKg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/medical/cmo) +"aKh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aKi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aKj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aKl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aKm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.1; on = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aKn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/hallway/primary/port) +"aKo" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"aKp" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aKq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) +"aKr" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/lattice,/turf/space,/area/space) +"aKs" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"aKt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/space_heater,/obj/machinery/camera{c_tag = "Starboard Maintence Bubble"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aKu" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aKv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aKw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aKx" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) +"aKy" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) +"aKz" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"aKA" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 14},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aKB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/hallway/primary/starboard) +"aKC" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aKD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aKE" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/assembly/robotics) +"aKF" = (/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aKG" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/cable_coil,/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aKH" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/wrapsortjunction{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aKI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aKJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/maintenance/disposal) +"aKK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/disposal) +"aKL" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/disposal) +"aKM" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"aKN" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"aKO" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f15"; icon_state = "swall_f15"},/area/shuttle/abandoned) +"aKP" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/abandoned) +"aKQ" = (/obj/machinery/computer/pod{id = "oldship_gun"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aKR" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/abandoned) +"aKS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/simulated/floor/plating,/area/medical/cmo) +"aKT" = (/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer"; req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"aKU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/cmo) +"aKV" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aKW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aKX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) +"aKY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aKZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aLa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aLb" = (/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) +"aLc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aLd" = (/obj/machinery/vending/snack,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aLe" = (/turf/simulated/wall/r_wall,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aLf" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aLg" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aLh" = (/turf/simulated/wall/r_wall,/area/engine/gravity_generator) +"aLi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) +"aLj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) +"aLk" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aLl" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aLm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aLn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aLo" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/assembly/robotics) +"aLp" = (/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/assembly/robotics) +"aLq" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/assembly/robotics) +"aLr" = (/mob/living/simple_animal/slime,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aLs" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aLt" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aLu" = (/turf/simulated/floor/plating,/area/shuttle/abandoned) +"aLv" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f13"; icon_state = "swall_f13"},/area/shuttle/abandoned) +"aLw" = (/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aLx" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plating,/area/shuttle/abandoned) +"aLy" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "oldship_gun"},/turf/simulated/floor/plating,/area/shuttle/abandoned) +"aLz" = (/obj/machinery/door/poddoor{id = "oldship_gun"; name = "pod bay door"},/turf/simulated/floor/plating,/area/shuttle/abandoned) +"aLA" = (/turf/simulated/wall,/area/medical/medbay) +"aLB" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) +"aLC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aLD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aLE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) +"aLF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aLG" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aLH" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aLI" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aLJ" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) +"aLK" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) +"aLL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) +"aLM" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aLN" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aLO" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aLP" = (/obj/structure/table,/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/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) +"aLQ" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/assembly/robotics) +"aLR" = (/obj/structure/optable{name = "Robotics Operating Table"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/assembly/robotics) +"aLS" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/assembly/robotics) +"aLT" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 1; network = list("Xeno","RD"); pixel_x = 0},/obj/machinery/light{dir = 2},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aLU" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aLV" = (/obj/structure/girder/displaced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aLW" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f12"; icon_state = "swall_f12"},/area/shuttle/abandoned) +"aLX" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/abandoned) +"aLY" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aLZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aMa" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aMb" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMh" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aMi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) +"aMj" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aMk" = (/obj/machinery/washing_machine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/medbay) +"aMl" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/medbay) +"aMm" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/gun/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/reagent_containers/spray,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aMn" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"aMo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aMp" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/darkwarning,/area/tcommsat/computer) +"aMq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/darkwarning,/area/tcommsat/computer) +"aMr" = (/turf/simulated/wall/r_wall,/area/tcommsat/server) +"aMs" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aMt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) +"aMu" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) +"aMv" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/gravity_generator) +"aMw" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) +"aMx" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/engine/gravity_generator) +"aMy" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aMz" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/hallway/primary/starboard) +"aMA" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aMB" = (/turf/simulated/wall/r_wall,/area/assembly/chargebay) +"aMC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/assembly/chargebay) +"aMD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/assembly/chargebay) +"aME" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aMF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/assembly/chargebay) +"aMG" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) +"aMH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) +"aMI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) +"aMJ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aMK" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aML" = (/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aMM" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)"; icon_state = "propulsion_r"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"aMN" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f17"; icon_state = "swall_f17"},/area/shuttle/abandoned) +"aMO" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plating,/area/shuttle/abandoned) +"aMP" = (/obj/item/weapon/stock_parts/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aMQ" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f14"; icon_state = "swall_f14"},/area/shuttle/abandoned) +"aMR" = (/obj/structure/rack,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aMS" = (/obj/structure/cable,/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aMT" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f11"; icon_state = "swall_f11"},/area/shuttle/abandoned) +"aMU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aMV" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aMW" = (/obj/structure/table,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aMX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aMZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aNa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aNb" = (/obj/machinery/door/airlock/medical{name = "Cleaning Room"; req_access_txt = "5"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aNc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNf" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) +"aNh" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/port) +"aNi" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aNj" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aNk" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aNl" = (/obj/machinery/computer/message_monitor,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/tcommsat/computer) +"aNm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/tcommsat/computer) +"aNn" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Telecoms Server APC"; pixel_x = 28; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/computer) +"aNo" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aNp" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aNq" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aNr" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/hallway/primary/starboard) +"aNs" = (/obj/machinery/power/apc{dir = 8; name = "Mech Bay APC"; pixel_x = -25},/obj/structure/cable,/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aNt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; layer = 2.1; on = 1},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aNu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aNw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aNx" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aNy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/item/clothing/head/welding,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aNz" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 17},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aNA" = (/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aNB" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aNC" = (/obj/structure/disposalpipe/sortjunction{sortType = 4},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aND" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/weapon/paper{text = "What the hell Gary? What is this shit? SIXTEEN sort junctions? NT is going to kill us if this isn't fixed before the shift start. Get your ass on this once you're done futzing about on the port transit station maint."},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aNE" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aNF" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aNG" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aNH" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aNI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aNJ" = (/turf/simulated/floor/plating,/area/medical/medbay) +"aNK" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aNL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aNM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aNN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) +"aNO" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aNP" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aNQ" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aNR" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) +"aNS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNT" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/medbay) +"aNV" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aNW" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/computer) +"aNX" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/computer) +"aNY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/computer) +"aNZ" = (/obj/machinery/camera{c_tag = "Telecoms Server Room North"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners"; icon_state = "darkyellowcorners"},/area/tcommsat/server) +"aOa" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow"; icon_state = "darkyellow"},/area/tcommsat/server) +"aOb" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/tcommsat/server) +"aOc" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"aOd" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"aOe" = (/obj/machinery/gravity_generator/main/station,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) +"aOf" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/hallway/primary/starboard) +"aOg" = (/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aOh" = (/obj/machinery/recharge_station,/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/assembly/chargebay) +"aOi" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aOj" = (/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/assembly/chargebay) +"aOk" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"aOl" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOm" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 23},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOn" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOo" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOp" = (/obj/item/weapon/weldingtool/largetank,/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOq" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aOr" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aOs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/abandoned) +"aOt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aOu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aOv" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) +"aOw" = (/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aOx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"aOy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) +"aOz" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/medbay) +"aOA" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/tcommsat/computer) +"aOB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Telecoms Computers"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/computer) +"aOC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/computer) +"aOD" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/tcommsat/server) +"aOE" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aOF" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aOG" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (WEST)"; icon_state = "darkyellow"; dir = 8},/area/tcommsat/server) +"aOH" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aOI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) +"aOJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) +"aOK" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aOL" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aOM" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Charge Bay"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aON" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aOO" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aOP" = (/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"aOQ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aOR" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 11},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOS" = (/obj/structure/disposalpipe/sortjunction{sortType = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOT" = (/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) +"aOU" = (/obj/machinery/light,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"aOV" = (/obj/machinery/computer/station_alert,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOW" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOX" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aOY" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aOZ" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aPa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aPb" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) +"aPc" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"aPd" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) +"aPe" = (/obj/structure/closet/wardrobe/white/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/obj/item/clothing/suit/toggle/labcoat/emt,/obj/item/clothing/head/soft/emt,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPf" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/alarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPg" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPh" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPi" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPj" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPk" = (/obj/machinery/status_display,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/tcommsat/computer) +"aPl" = (/obj/machinery/door/airlock/glass_command{name = "Control Room"; req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/tcommsat/computer) +"aPm" = (/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aPn" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aPo" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aPp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) +"aPq" = (/obj/machinery/door/airlock/glass_command{name = "Gravity Generator Area"; req_access_txt = "19; 61"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) +"aPr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) +"aPs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/gravity_generator) +"aPt" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aPu" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 7},/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aPv" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aPw" = (/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aPx" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aPy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aPz" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) +"aPA" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) +"aPB" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aPC" = (/obj/structure/table,/obj/item/weapon/gun/energy/laser/retro,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aPD" = (/obj/structure/closet/crate/medical,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aPE" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aPF" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/vending/wallmed{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPG" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aPI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPJ" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall,/area/medical/medbay) +"aPK" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPL" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aPM" = (/turf/simulated/wall/r_wall,/area/tcommsat/lounge) +"aPN" = (/obj/structure/table,/obj/item/device/multitool,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/tcommsat/lounge) +"aPO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/tcommsat/lounge) +"aPP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{pixel_x = 30},/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/lounge) +"aPQ" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (EAST)"; icon_state = "darkyellowcorners"; dir = 4},/area/tcommsat/server) +"aPR" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellow (NORTH)"; icon_state = "darkyellow"; dir = 1},/area/tcommsat/server) +"aPS" = (/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners (NORTH)"; icon_state = "darkyellowcorners"; dir = 1},/area/tcommsat/server) +"aPT" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/server) +"aPU" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) +"aPV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/space) +"aPW" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aPX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aPY" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/gravity_generator) +"aPZ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) +"aQa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) +"aQb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) +"aQc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) +"aQd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) +"aQe" = (/obj/structure/table,/obj/item/clothing/head/radiation,/obj/item/weapon/screwdriver,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/engine/gravity_generator) +"aQf" = (/obj/structure/table,/obj/item/clothing/suit/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/engine/gravity_generator) +"aQg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) +"aQh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aQi" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aQj" = (/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Shutters"; pixel_y = -26},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aQk" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/assembly/chargebay) +"aQl" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = -23},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aQm" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQn" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQo" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQt" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Observation Pod"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQv" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQw" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQy" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aQz" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aQA" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aQB" = (/obj/machinery/computer/shuttle/white_ship,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aQC" = (/obj/item/stack/sheet/cardboard,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aQD" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aQE" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQF" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aQH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aQJ" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aQN" = (/obj/machinery/door/window/eastleft{dir = 8; name = "Medical Delivery"; req_access_txt = "5"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/medical/medbay) +"aQO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/wall,/area/hallway/primary/port) +"aQP" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) +"aQQ" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) +"aQR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) +"aQS" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/tcommsat/lounge) +"aQT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/tcommsat/server) +"aQU" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/tcommsat/server) +"aQV" = (/obj/machinery/message_server,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aQW" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aQX" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/server) +"aQY" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) +"aQZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) +"aRa" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)"; icon_state = "darkblue"; dir = 9},/area/bridge) +"aRb" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) +"aRc" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) +"aRd" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/item/weapon/canvas,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aRe" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/effect/decal/cleanable/generic,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aRf" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/item/weapon/storage/crayons,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aRg" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aRh" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating/airless,/area/space) +"aRi" = (/obj/structure/lattice,/obj/item/stack/sheet/plasteel,/turf/space,/area/space) +"aRj" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/gravity_generator) +"aRk" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) +"aRl" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) +"aRm" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning/corner,/area/engine/gravity_generator) +"aRn" = (/obj/machinery/power/terminal,/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) +"aRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/gravity_generator) +"aRp" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) +"aRq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/gravity_generator) +"aRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/gravity_generator) +"aRs" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) +"aRt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/hallway/primary/starboard) +"aRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aRv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"aRw" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/assembly/chargebay) +"aRx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRy" = (/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 22},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRA" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 15},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRC" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRD" = (/obj/structure/closet,/obj/item/device/flashlight,/obj/item/weapon/extinguisher,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRE" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRG" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRH" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aRI" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aRJ" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aRK" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/girder/displaced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aRL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) +"aRN" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aRO" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aRP" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay) +"aRQ" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRR" = (/obj/structure/table,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRS" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRT" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRU" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7; pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRV" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRW" = (/obj/structure/table,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRX" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRY" = (/turf/simulated/wall,/area/tcommsat/lounge) +"aRZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/tcommsat/lounge) +"aSa" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/tcommsat/lounge) +"aSb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/tcommsat/lounge) +"aSc" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) +"aSd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) +"aSe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) +"aSf" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable,/turf/simulated/floor/plating,/area/tcommsat/lounge) +"aSg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-darkyellowcorners"; icon_state = "darkyellowcorners"},/area/tcommsat/server) +"aSh" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/server) +"aSi" = (/obj/machinery/telecomms/receiver/preset_left,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/tcommsat/server) +"aSj" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)"; icon_state = "darkblue"; dir = 9},/area/bridge) +"aSk" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) +"aSl" = (/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) +"aSm" = (/obj/structure/bed/chair{dir = 1; name = "Engineering Station"},/turf/simulated/floor/plasteel/darkpurple,/area/bridge) +"aSn" = (/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) +"aSo" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) +"aSp" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) +"aSq" = (/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/canvas,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aSr" = (/obj/item/weapon/canvas/twentythreeXtwentythree,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aSs" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) +"aSt" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) +"aSu" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) +"aSv" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) +"aSw" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/engine/gravity_generator) +"aSx" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) +"aSy" = (/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) +"aSz" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/engine/gravity_generator) +"aSA" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/engine/gravity_generator) +"aSB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aSC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Shutters"; pixel_y = 26; req_access_txt = "29"},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/primary/starboard) +"aSD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/hallway/primary/starboard) +"aSE" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) +"aSF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSG" = (/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 21},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSH" = (/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSI" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 16},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSK" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSL" = (/obj/item/device/multitool,/obj/item/device/radio,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSM" = (/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSN" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 10; pixel_y = -5},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSO" = (/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSP" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSQ" = (/obj/structure/bed/chair{dir = 8},/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSR" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aST" = (/obj/machinery/vending/snack,/obj/machinery/light/small,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSU" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSV" = (/obj/machinery/camera{c_tag = "Starboard Pods"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aSW" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/abandoned) +"aSX" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/abandoned) +"aSY" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) +"aSZ" = (/obj/machinery/door/window/northright,/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) +"aTa" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aTb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aTc" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aTe" = (/turf/simulated/wall,/area/medical/surgery) +"aTf" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/port) +"aTg" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/port) +"aTh" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) +"aTi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/tcommsat/lounge) +"aTj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/tcommsat/lounge) +"aTk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/tcommsat/lounge) +"aTl" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/obj/machinery/camera{c_tag = "Telecoms Lobby"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) +"aTm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) +"aTn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) +"aTo" = (/obj/machinery/power/apc{dir = 8; name = "Telecoms Storage APC"; pixel_x = -26; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/tcommsat/server) +"aTp" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aTq" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aTr" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aTs" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHWEST)"; icon_state = "darkblue"; dir = 9},/area/bridge) +"aTt" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) +"aTu" = (/obj/structure/bed/chair{dir = 1; name = "Logistics Station"},/turf/simulated/floor/plasteel/darkbrown,/area/bridge) +"aTv" = (/turf/simulated/floor/plasteel/darkpurple/corner,/area/bridge) +"aTw" = (/turf/simulated/floor/plasteel/darkpurple/side,/area/bridge) +"aTx" = (/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/bridge) +"aTy" = (/obj/structure/bed/chair{dir = 1; name = "Security Station"},/turf/simulated/floor/plasteel/darkred,/area/bridge) +"aTz" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) +"aTA" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) +"aTB" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/easel,/obj/item/weapon/canvas,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aTC" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aTD" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aTE" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aTF" = (/turf/simulated/wall/r_wall,/area/medical/research) +"aTG" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"aTH" = (/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 22},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aTI" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aTJ" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 18},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aTK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/quartermaster/miningdock) +"aTL" = (/turf/simulated/wall,/area/quartermaster/miningdock) +"aTM" = (/obj/structure/table,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aTN" = (/obj/machinery/iv_drip{density = 0},/obj/item/roller,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aTO" = (/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner"; icon_state = "warnplatecorner"; dir = 2},/area/space) +"aTP" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aTQ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aTS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aTT" = (/obj/structure/flora/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aTU" = (/obj/machinery/power/apc{dir = 8; name = "Surgery APC"; pixel_x = -24; pixel_y = 0},/obj/structure/bed/chair{dir = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel,/area/medical/surgery) +"aTV" = (/turf/simulated/floor/plasteel,/area/medical/surgery) +"aTW" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/surgery) +"aTX" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aTY" = (/obj/structure/table,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aTZ" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aUa" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aUb" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aUc" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aUd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) +"aUe" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) +"aUf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) +"aUg" = (/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) +"aUh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) +"aUi" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) +"aUj" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/tcommsat/lounge) +"aUk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"},/area/tcommsat/lounge) +"aUl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/tcommsat/lounge) +"aUm" = (/obj/machinery/camera{c_tag = "Telecoms Server Room"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/tcommsat/server) +"aUn" = (/obj/machinery/telecomms/server/presets/command,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aUo" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aUp" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aUq" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aUr" = (/turf/simulated/floor/plasteel/black,/area/bridge) +"aUs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/bridge) +"aUt" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/bridge) +"aUu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/bridge) +"aUv" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aUw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/camera{c_tag = "Art Bubble"; dir = 8; network = list("MINE")},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aUx" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/space,/area/space) +"aUy" = (/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Medical Research Chemistry"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (NORTHWEST)"; icon_state = "whiteyellow"; dir = 9},/area/medical/research) +"aUz" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellow"},/area/medical/research) +"aUA" = (/obj/machinery/chem_dispenser/constructable,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteyellow"},/area/medical/research) +"aUB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/turf/simulated/floor/plating,/area/medical/research) +"aUC" = (/obj/machinery/vending/wallmed{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUD" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel{tag = "icon-whitebot"; icon_state = "whitebot"},/area/medical/research) +"aUE" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -3; pixel_y = -3},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUF" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUG" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/science{name = "Medical Research"; req_access_txt = "5, 47"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aUK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"aUL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aUS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"aUT" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aUU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aUV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aUW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aUX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aUY" = (/obj/structure/disposalpipe/sortjunction{sortdir = 8; sortType = 19},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aUZ" = (/obj/structure/closet/emcloset,/obj/machinery/status_display{density = 0; pixel_x = 0; pixel_y = 32; supply_display = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)"; icon_state = "brown"; dir = 9},/area/quartermaster/miningdock) +"aVa" = (/obj/structure/closet/crate,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/miningdock) +"aVb" = (/obj/machinery/power/apc{dir = 1; name = "Mining APC"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 0; pixel_y = 38},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/quartermaster/miningdock) +"aVc" = (/obj/machinery/light{dir = 1},/obj/structure/closet/secure_closet/miner,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/quartermaster/miningdock) +"aVd" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2; pixel_y = -3},/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel{dir = 5; icon_state = "brown"},/area/quartermaster/miningdock) +"aVe" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aVf" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera{c_tag = "Medbay Backup Control"; dir = 8; network = list("MINE")},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aVg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aVh" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aVi" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aVj" = (/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aVk" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/medical/surgery) +"aVl" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aVm" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aVn" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aVo" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aVp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aVq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aVr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/port) +"aVs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/tcommsat/lounge) +"aVt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/lounge) +"aVu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/lounge) +"aVv" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/tcommsat/lounge) +"aVw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/tcommsat/lounge) +"aVx" = (/obj/machinery/power/apc{dir = 2; name = "Telecoms Monitoring APC"; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/tcommsat/lounge) +"aVy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/space) +"aVz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"aVA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) +"aVB" = (/obj/machinery/computer/shuttle/labor,/turf/simulated/floor/plasteel/black,/area/bridge) +"aVC" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel/black,/area/bridge) +"aVD" = (/obj/machinery/computer/shuttle/mining,/turf/simulated/floor/plasteel/black,/area/bridge) +"aVE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (EAST)"; icon_state = "darkpurplecorners"; dir = 4},/area/bridge) +"aVF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/bridge) +"aVG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (NORTH)"; icon_state = "darkpurplecorners"; dir = 1},/area/bridge) +"aVH" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel/black,/area/bridge) +"aVI" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/black,/area/bridge) +"aVJ" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel/black,/area/bridge) +"aVK" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) +"aVL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/paint/blue,/obj/item/weapon/paint/red{pixel_x = 12},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aVM" = (/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/paint/green,/obj/item/weapon/paint/violet{pixel_x = 12},/obj/item/weapon/paint/yellow{pixel_x = -12},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aVN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/paint/black,/obj/item/weapon/paint/white{pixel_x = -12},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aVO" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/research) +"aVP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVQ" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/research) +"aVR" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5, 47"},/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/research) +"aVS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVU" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVV" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVX" = (/obj/machinery/camera{c_tag = "Medical Research"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aVY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"aVZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aWc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aWd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/starboard) +"aWe" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"aWf" = (/obj/machinery/power/apc{dir = 2; name = "Starboard Primary Hallway APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/starboard) +"aWg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aWh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/rack,/obj/item/weapon/pickaxe{attack_verb = list("ineffectively hit"); desc = "A pickaxe designed to be only effective at digging rock and ore, very ineffective as a weapon."; force = 1; name = "safety pickaxe"; pixel_x = 5; throwforce = 1},/obj/item/weapon/ore/iron,/obj/item/weapon/ore/iron,/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aWi" = (/obj/structure/rack,/obj/item/weapon/ore/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aWj" = (/obj/structure/table,/obj/item/weapon/storage/bag/ore,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aWk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint{name = "Fore Starboard Maintenance"}) +"aWl" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/quartermaster/miningdock) +"aWm" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) +"aWn" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aWo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aWp" = (/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aWq" = (/obj/machinery/camera{c_tag = "Mining Office"; dir = 8; network = list("SS13")},/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) +"aWr" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/mining) +"aWs" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/mining) +"aWt" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/mining) +"aWu" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f18"; icon_state = "swall_f18"},/area/shuttle/abandoned) +"aWv" = (/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aWw" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aWx" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWB" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aWE" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/medical/medbay) +"aWF" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aWG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aWH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"aWI" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/medical/surgery) +"aWJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/medical/surgery) +"aWK" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery) +"aWL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aWM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aWN" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aWO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aWP" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aWQ" = (/obj/machinery/disposal/bin,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"aWR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"aWS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aWT" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"; tag = "icon-pipe-j2 (NORTH)"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aWU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Telcom Storage"; req_access_txt = "23"},/turf/simulated/floor/plasteel,/area/tcommsat/lounge) +"aWV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/lounge) +"aWW" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aWX" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aWY" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/tcommsat/server) +"aWZ" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) +"aXa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/darkblue,/area/bridge) +"aXb" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) +"aXc" = (/obj/structure/bed/chair{dir = 1; name = "Crew Station"},/turf/simulated/floor/plasteel/darkyellow,/area/bridge) +"aXd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) +"aXe" = (/obj/structure/bed/chair{dir = 1; name = "Command Station"},/obj/machinery/keycard_auth{pixel_x = -6; pixel_y = 38},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{pixel_x = 10; pixel_y = 28},/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = 23},/turf/simulated/floor/plasteel/black,/area/bridge) +"aXf" = (/obj/structure/bed/chair{dir = 1; name = "Crew Station"},/turf/simulated/floor/plasteel/darkgreen,/area/bridge) +"aXg" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) +"aXh" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plasteel/darkblue,/area/bridge) +"aXi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aXj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aXk" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/pillbottles,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/research) +"aXl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXm" = (/obj/machinery/chem_master{pixel_x = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/research) +"aXn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/research) +"aXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/science{name = "Medical Research"; req_access_txt = "5, 47"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aXu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/starboard) +"aXv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"aXw" = (/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"aXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aXy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"aXz" = (/turf/simulated/wall,/area/quartermaster/qm) +"aXA" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/computer/shuttle/mining{req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) +"aXB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aXC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aXD" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) +"aXE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/miningdock) +"aXF" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/mining) +"aXG" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"aXH" = (/obj/machinery/computer/shuttle/mining,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"aXI" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aXJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aXK" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aXL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aXM" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/orange{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aXN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aXO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aXP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall,/area/medical/cryo) +"aXQ" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/medical/cryo) +"aXR" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/medical/cryo) +"aXS" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/wall,/area/medical/medbay) +"aXT" = (/turf/simulated/wall,/area/medical/cryo) +"aXU" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aXV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/medical/surgery) +"aXW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aXX" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aXY" = (/obj/machinery/computer/operating,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aXZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aYa" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aYb" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) +"aYc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aYd" = (/turf/simulated/wall/r_wall,/area/storage/secure) +"aYe" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/storage/secure) +"aYf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/secure) +"aYg" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/secure) +"aYh" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) +"aYi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space) +"aYj" = (/turf/simulated/floor/plasteel/darkblue,/area/bridge) +"aYk" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHWEST)"; icon_state = "darkblue"; dir = 10},/area/bridge) +"aYl" = (/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) +"aYm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) +"aYn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Command Bridge"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) +"aYo" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHEAST)"; icon_state = "darkblue"; dir = 6},/area/bridge) +"aYp" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteyellow"},/area/medical/research) +"aYq" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/research) +"aYr" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whiteyellow"},/area/medical/research) +"aYs" = (/obj/machinery/door/airlock/science{name = "Chemistry"; req_access_txt = "5, 47"},/obj/machinery/door/poddoor/shutters{id = "MedResShutters"; name = "Medical Research Chemistry shutters"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aYt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aYu" = (/obj/machinery/power/apc{dir = 4; name = "Medical Research APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aYw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aYx" = (/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aYy" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"aYz" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/destTagger,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHWEST)"; icon_state = "brown"; dir = 9},/area/quartermaster/qm) +"aYA" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) +"aYB" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) +"aYC" = (/obj/machinery/camera/autoname{dir = 2; network = list("SS13")},/obj/machinery/hologram/holopad,/obj/machinery/power/apc{dir = 1; name = "Quartermaster's Office APC"; pixel_x = 0; pixel_y = 30},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) +"aYD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/qm) +"aYE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/quartermaster/qm) +"aYF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/quartermaster/qm) +"aYG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aYH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aYI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) +"aYJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aYK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aYL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aYM" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) +"aYN" = (/obj/item/weapon/ore/iron,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/quartermaster/miningdock) +"aYO" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Mining Dock"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/quartermaster/miningdock) +"aYP" = (/obj/structure/sign/vacuum{pixel_x = -30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"aYQ" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"aYR" = (/obj/structure/sign/vacuum{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"aYS" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f16"; icon_state = "swall_f16"},/area/shuttle/abandoned) +"aYT" = (/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"aYU" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aYV" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aYW" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aYX" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aYY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aYZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"aZa" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/medical/cryo) +"aZb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; icon_state = "dvalve_map"; state_open = 1; tag = "icon-dvalve_map (EAST)"},/turf/simulated/floor/plating,/area/medical/cryo) +"aZc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/cryo) +"aZd" = (/obj/machinery/power/apc{dir = 1; name = "Medbay APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/floor/plating,/area/medical/medbay) +"aZe" = (/obj/machinery/power/apc{dir = 1; name = "Medbay APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/medical/cryo) +"aZf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Cryo Room"; req_access_txt = "5"},/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/medical/cryo) +"aZg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"aZh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aZi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Observation"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/surgery) +"aZj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) +"aZk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"aZl" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Telecoms Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/storage/secure) +"aZm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/secure) +"aZn" = (/turf/simulated/floor/plating,/area/storage/secure) +"aZo" = (/obj/machinery/vending/engivend,/turf/simulated/floor/plating,/area/storage/secure) +"aZp" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"aZq" = (/turf/simulated/wall/r_wall,/area/bridge) +"aZr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/bridge) +"aZs" = (/turf/simulated/floor/plasteel{tag = "icon-stairs-old"; icon_state = "stairs-old"},/area/bridge) +"aZt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-old"; icon_state = "stairs-old"},/area/bridge) +"aZu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"aZv" = (/turf/simulated/wall,/area/medical/research) +"aZw" = (/obj/structure/bed/roller,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{id = "MedResShutters"; name = "Chemistry Shutters"; pixel_x = -26; pixel_y = 0; req_access_txt = "5, 47"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"aZx" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/research) +"aZy" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/research) +"aZz" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/research) +"aZA" = (/turf/simulated/wall/r_wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aZB" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aZC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aZD" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"aZE" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) +"aZF" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Quatermaster RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/qm) +"aZG" = (/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"aZH" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"aZI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"aZJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"aZK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/qm) +"aZL" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"aZM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aZN" = (/obj/item/device/radio/intercom{pixel_y = -30},/obj/machinery/camera{c_tag = "Mining"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/miningdock) +"aZO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/quartermaster/miningdock) +"aZP" = (/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aZQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aZR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) +"aZS" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/miningdock) +"aZT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aZU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"aZV" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"},/turf/simulated/floor/plating,/area/quartermaster/miningdock) +"aZW" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/obj/docking_port/mobile{dir = 4; dwidth = 3; height = 5; id = "mining"; name = "mining shuttle"; travelDir = 90; width = 7},/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; width = 7},/turf/simulated/floor/plating,/area/shuttle/mining) +"aZX" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"aZY" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/shuttle/mining) +"aZZ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"baa" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bab" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bac" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bad" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bae" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/simulated/floor/plating,/area/medical/cryo) +"baf" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; icon_state = "dvalve_map"; state_open = 1; tag = "icon-dvalve_map (EAST)"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/cryo) +"bag" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/cryo) +"bah" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/cryo) +"bai" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Cryo Control"; dir = 8; network = list("MINE")},/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/medical/cryo) +"baj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/medical/cryo) +"bak" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bal" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) +"bam" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"ban" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bao" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bap" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) +"baq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/medical) +"bar" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint/medical) +"bas" = (/obj/machinery/camera{c_tag = "Security Post - Medbay"; dir = 2; network = list("SS13")},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security Post RC"; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/medical) +"bat" = (/obj/structure/filingcabinet,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/medical) +"bau" = (/turf/simulated/wall,/area/security/checkpoint/medical) +"bav" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/secure) +"baw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) +"bax" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) +"bay" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/storage/secure) +"baz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) +"baA" = (/obj/machinery/power/apc{dir = 4; name = "Telecoms Storage APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/storage/secure) +"baB" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"baC" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"baD" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"baE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"baF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"baG" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"baH" = (/turf/simulated/wall/r_wall,/area/space) +"baI" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"baJ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"baK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"baL" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "13,8"},/turf/simulated/floor/plating,/area/medical/research) +"baM" = (/turf/simulated/floor/plasteel,/area/medical/research) +"baN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/medical/research) +"baO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/research) +"baP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"baQ" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"baR" = (/obj/structure/table,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/research) +"baS" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"baT" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/research) +"baU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"baV" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"baW" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"baX" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm{pixel_x = 0; pixel_y = 0},/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/qm) +"baY" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/device/gps{gpstag = "QM0"},/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"baZ" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"bba" = (/obj/machinery/computer/supplycomp,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"bbb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"bbc" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/qm) +"bbd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"bbe" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) +"bbf" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/item/clothing/suit/hooded/wintercoat/miner,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) +"bbg" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/quartermaster/miningdock) +"bbh" = (/obj/machinery/camera{c_tag = "Mining Dock External"; dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/quartermaster/miningdock) +"bbi" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"bbj" = (/obj/machinery/atmospherics/components/unary/tank{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bbk" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bbl" = (/obj/machinery/power/port_gen/pacman,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 32; pixel_y = 0},/obj/structure/cable/orange{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bbm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bbn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating,/area/medical/cryo) +"bbo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating,/area/medical/cryo) +"bbp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plating,/area/medical/cryo) +"bbq" = (/turf/simulated/floor/plating,/area/medical/cryo) +"bbr" = (/obj/structure/flora/kirbyplants,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"bbs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bbt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bbu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/medical) +"bbv" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/depsec/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) +"bbw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint/medical) +"bbx" = (/obj/machinery/computer/secure_data,/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) +"bby" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"bbz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Central Port Maintenance"}) +"bbA" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) +"bbB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) +"bbC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/secure) +"bbD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating,/area/storage/secure) +"bbE" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/secure) +"bbF" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 2; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/paladin,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/robocop,/obj/item/weapon/aiModule/core/full/custom,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/turret_protected/ai_upload) +"bbG" = (/obj/structure/table,/obj/item/weapon/folder/blue,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bbH" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bbI" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbJ" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbK" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/device/multitool,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbL" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbO" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/bridge) +"bbP" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bbQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bbR" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel,/area/medical/research) +"bbS" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel{tag = "icon-whitebot"; icon_state = "whitebot"},/area/medical/research) +"bbT" = (/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/robot_parts/chest,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research) +"bbU" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/research) +"bbV" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research) +"bbW" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research) +"bbX" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/research) +"bbY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bca" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"bcb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bcc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bcd" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/qm) +"bce" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) +"bcf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) +"bcg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) +"bch" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown,/area/quartermaster/qm) +"bci" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/quartermaster/qm) +"bcj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/qm) +"bck" = (/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bcl" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bcm" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining"; departmentType = 0; name = "Mining RC"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/miningdock) +"bcn" = (/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) +"bco" = (/obj/machinery/light,/obj/structure/ore_box,/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) +"bcp" = (/obj/structure/rack{dir = 1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/quartermaster/miningdock) +"bcq" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"bcr" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/shuttle/mining) +"bcs" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) +"bct" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/watertank,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bcu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/medical/cryo) +"bcv" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor/plating,/area/medical/cryo) +"bcw" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor/plating,/area/medical/cryo) +"bcx" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"bcy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bcz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bcA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"bcB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/medical) +"bcC" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) +"bcD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/checkpoint/medical) +"bcE" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) +"bcF" = (/turf/simulated/wall,/area/crew_quarters/cafeteria) +"bcG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) +"bcH" = (/turf/simulated/wall/r_wall,/area/crew_quarters/cafeteria) +"bcI" = (/obj/structure/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/message_monitor{pixel_y = -5},/turf/simulated/floor/plating,/area/storage/secure) +"bcJ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/simulated/floor/plating,/area/storage/secure) +"bcK" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bcL" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bcM" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bcN" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bcO" = (/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcP" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcQ" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcR" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcU" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bcV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bcW" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"bcX" = (/obj/structure/rack,/obj/item/stack/sheet/glass{amount = 50},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bcY" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bcZ" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"bda" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bdb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bdc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bdd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"bde" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bdf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bdg" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining{name = "Quatermaster"; req_access_txt = "41"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"bdh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/quartermaster/qm) +"bdi" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/qm) +"bdj" = (/obj/structure/closet/wardrobe/cargotech,/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bdk" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/mining) +"bdl" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/mining) +"bdm" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/mining) +"bdn" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/mining) +"bdo" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall,/area/medical/cryo) +"bdp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bdq" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) +"bdr" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bds" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"bdt" = (/obj/machinery/power/apc{dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) +"bdu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/checkpoint/medical) +"bdv" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) +"bdw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bdx" = (/obj/machinery/camera{c_tag = "Bar"; dir = 2; network = list("SS13")},/obj/machinery/requests_console{department = "Cafe"; departmentType = 2; name = "Cafe RC"; pixel_x = 0; pixel_y = 30},/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/obj/structure/table,/obj/item/clothing/under/rank/bartender,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bdy" = (/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/table,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bdz" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/simulated/floor/plating,/area/storage/secure) +"bdA" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plating,/area/storage/secure) +"bdB" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/simulated/floor/plating,/area/storage/secure) +"bdC" = (/obj/machinery/computer/upload/ai,/obj/machinery/flasher{id = "AI"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bdD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bdE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bdF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bdG" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = -30; pixel_y = 0},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "AI Upload Exterior"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bdH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bdI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bdJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"bdK" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating/airless,/area/space) +"bdL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bdM" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/starboard) +"bdN" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) +"bdO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 3},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bdP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bdQ" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) +"bdR" = (/turf/simulated/wall,/area/quartermaster/office) +"bdS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bdT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bdU" = (/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bdV" = (/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bdW" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bdX" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/quartermaster/storage) +"bdY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bdZ" = (/obj/structure/table_frame,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bea" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"beb" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bec" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bed" = (/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/checkpoint/medical) +"bee" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/medical) +"bef" = (/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/medical) +"beg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"beh" = (/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bei" = (/obj/machinery/light_switch{pixel_y = 23},/obj/item/device/radio/intercom{pixel_x = 30},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bej" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/secure) +"bek" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/turf/simulated/floor/plating,/area/storage/secure) +"bel" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/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/crystal,/turf/simulated/floor/plating,/area/storage/secure) +"bem" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) +"ben" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"beo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/port) +"bep" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"beq" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/port) +"ber" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"bes" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "AI Upload"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bet" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"beu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bev" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bew" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bex" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bey" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed"; locked = 0; name = "AI Upload Access"; req_access_txt = "16"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bez" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"beA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -22},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"beB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"beC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/bridge) +"beD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/neutral,/area/bridge) +"beE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) +"beF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/space) +"beG" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Command EVA"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/space) +"beH" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/space) +"beI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"beJ" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"beK" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"beL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"beM" = (/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) +"beN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"beO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"beP" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/hallway/primary/starboard) +"beQ" = (/obj/machinery/mineral/ore_redemption{input_dir = 1},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) +"beR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/office) +"beS" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"beT" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"beU" = (/obj/machinery/bot/mulebot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #1"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) +"beV" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_r (NORTH)"; icon_state = "burst_r"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) +"beW" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) +"beX" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) +"beY" = (/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/structure/table_frame,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"beZ" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bfa" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bfb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bfc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bfd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"bfe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bff" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bfg" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"bfh" = (/obj/structure/sign/examroom,/turf/simulated/wall,/area/security/checkpoint/medical) +"bfi" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/checkpoint/medical) +"bfj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/chem_dispenser/drinks,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bfk" = (/obj/machinery/reagentgrinder,/obj/structure/table,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bfl" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bfm" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bfn" = (/obj/machinery/computer/upload/borg,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bfo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bfp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bfq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) +"bfr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bfs" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"bft" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bfu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bfv" = (/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bfw" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/bridge) +"bfx" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/space) +"bfy" = (/turf/simulated/floor/plasteel/black,/area/space) +"bfz" = (/obj/structure/table,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/space) +"bfA" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfB" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfC" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfF" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfH" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfI" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bfK" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bfL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bfM" = (/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) +"bfN" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) +"bfO" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) +"bfP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) +"bfQ" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 2; network = list("MiniSat")},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) +"bfR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) +"bfS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/ai_monitored/nuke_storage) +"bfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) +"bfU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) +"bfV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/darkwarning,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bfY" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bfZ" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bga" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) +"bgb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bgc" = (/obj/machinery/camera{c_tag = "Cargo Office"; dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 23; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bgd" = (/obj/machinery/bot/mulebot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #2"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) +"bge" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/supply) +"bgf" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/supply) +"bgg" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/supply) +"bgh" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/supply) +"bgi" = (/turf/simulated/wall,/area/chapel/office) +"bgj" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bgk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/medical/cryo) +"bgl" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/cryo) +"bgm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/cryo) +"bgn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/medbay) +"bgo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bgp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bgq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bgr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bgs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bgt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) +"bgu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bgv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bgw" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)"; icon_state = "whiteblue"; dir = 5},/area/medical/medbay) +"bgx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/medbay) +"bgy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"bgz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bgA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bgB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bgC" = (/obj/machinery/alarm{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bgD" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bgE" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bgF" = (/obj/machinery/power/apc{cell_type = 10000; dir = 2; name = "Upload APC"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"bgG" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bgH" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/weapon/melee/chainofcommand,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bgI" = (/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bgJ" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bgK" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bgL" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/item/weapon/storage/secure/safe{pixel_x = 35; pixel_y = 5},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bgM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Command North"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bgN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bgO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bgP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/bridge) +"bgQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/space) +"bgR" = (/turf/simulated/floor/plasteel/darkwarning,/area/space) +"bgS" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/space) +"bgT" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bgU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bgV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bgW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bgX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bgY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bgZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bha" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bhb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bhc" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bhd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/space) +"bhe" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/space) +"bhf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating/airless,/area/space) +"bhg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bhh" = (/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/ai_monitored/nuke_storage) +"bhi" = (/obj/machinery/nuclearbomb/selfdestruct{layer = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/nuke_storage) +"bhj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel/black,/area/ai_monitored/nuke_storage) +"bhk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/ai_monitored/nuke_storage) +"bhl" = (/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) +"bhm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bhn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bhp" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"bhq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bhr" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bhs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/office) +"bht" = (/obj/machinery/autolathe,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bhu" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bhv" = (/obj/machinery/bot/mulebot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #3"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) +"bhw" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/supply) +"bhx" = (/turf/simulated/wall/shuttle{tag = "icon-wall_floor (NORTHWEST)"; icon_state = "wall_floor"; dir = 9},/area/shuttle/supply) +"bhy" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) +"bhz" = (/turf/simulated/wall/shuttle{tag = "icon-wall_floor (NORTHEAST)"; icon_state = "wall_floor"; dir = 5},/area/shuttle/supply) +"bhA" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/supply) +"bhB" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bhC" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bhD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bhE" = (/obj/structure/bodycontainer/crematorium,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bhF" = (/turf/simulated/wall,/area/chapel/main) +"bhG" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bhH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bhI" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bhJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/cryo) +"bhK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bhL" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bhM" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/cryo) +"bhN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) +"bhO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bhP" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bhQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Exit Button"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bhR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bhS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bhT" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bhU" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) +"bhV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"bhW" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bhX" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bhY" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bhZ" = (/obj/structure/table,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bia" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/space) +"bib" = (/turf/simulated/wall,/area/maintenance/port) +"bic" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/maintenance/port) +"bid" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"bie" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left"; dir = 1; icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bif" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"big" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bih" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/camera{c_tag = "Captain's Office Lobby"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bii" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bij" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bik" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bil" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bim" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bin" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bio" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bip" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"biq" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bir" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bis" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bit" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"biu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"biv" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) +"biw" = (/obj/structure/closet/secure_closet/freezer/money,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/clothing/head/bearpelt,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) +"bix" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1; pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1; pixel_y = -2},/obj/item/weapon/storage/belt/champion,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) +"biy" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/nuke_storage) +"biz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) +"biA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/ai_monitored/nuke_storage) +"biB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"biC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"biD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"biE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"biF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; sortType = 2},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"biG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) +"biH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/hallway/primary/starboard) +"biI" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Cargo Desk"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"biJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"biK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"biL" = (/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"biM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/office) +"biN" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"biO" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"biP" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/storage) +"biQ" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/supply) +"biR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/chapel/main) +"biS" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"biT" = (/obj/machinery/button/crematorium{pixel_x = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"biU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"biV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/morgue) +"biW" = (/turf/simulated/wall,/area/medical/morgue) +"biX" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/simulated/wall,/area/medical/morgue) +"biY" = (/turf/simulated/wall/r_wall,/area/medical/morgue) +"biZ" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) +"bja" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bjb" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/chemistry) +"bjc" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"bjd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/chemistry) +"bje" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/medbay) +"bjf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/medbay) +"bjg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/medbay) +"bjh" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"bji" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/maintenance/port) +"bjj" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/maintenance/port) +"bjk" = (/obj/machinery/vending/boozeomat,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/turf/simulated/floor/plasteel{icon_state = "wood"},/area/maintenance/port) +"bjl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"bjm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bjn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bjo" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bjp" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bjq" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bjr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bjs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"bjt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bju" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bjv" = (/obj/machinery/power/apc{cell_type = 10000; dir = 8; name = "Bridge APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/bridge) +"bjw" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bjx" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) +"bjy" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bjz" = (/obj/machinery/computer/supplycomp,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bjA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bjB" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/obj/item/device/multitool,/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = 0},/obj/item/stack/packageWrap,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bjC" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bjD" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/storage) +"bjE" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bjF" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bjG" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bjH" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/simulated/floor/plating,/area/shuttle/supply) +"bjI" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"bjJ" = (/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTHEAST)"; icon_state = "carpetsymbol"; dir = 5},/area/chapel/main) +"bjK" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"bjL" = (/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bjM" = (/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bjN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"bjO" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bjP" = (/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bjQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bjR" = (/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (NORTHWEST)"; icon_state = "whiteyellow"; dir = 9},/area/medical/chemistry) +"bjS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) +"bjT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) +"bjU" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) +"bjV" = (/obj/effect/landmark/start{name = "Chemist"},/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (NORTH)"; icon_state = "whiteyellow"; dir = 1},/area/medical/chemistry) +"bjW" = (/obj/machinery/chem_dispenser,/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) +"bjX" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHWEST)"; icon_state = "whiteblue"; dir = 9},/area/medical/medbay) +"bjY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bjZ" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bka" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bkb" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) +"bkc" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bkd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bke" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"bkf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bkg" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bkh" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/port) +"bki" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/maintenance/port) +"bkj" = (/turf/simulated/floor/wood{tag = "icon-wood-broken4"; icon_state = "wood-broken4"},/area/maintenance/port) +"bkk" = (/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/port) +"bkl" = (/turf/simulated/floor/wood,/area/maintenance/port) +"bkm" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/maintenance/port) +"bkn" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/maintenance/port) +"bko" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bkp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bkq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bkr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bks" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/camera,/obj/item/weapon/storage/photo_album{pixel_y = -10},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bkt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bku" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bkv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bkw" = (/obj/machinery/door/airlock/command{name = "Command Maintence"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bkx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bky" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bkz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bkA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bkB" = (/obj/machinery/power/apc{dir = 1; name = "Bridge Maintenance APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bkC" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bkD" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bkE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bkF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bkG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) +"bkH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) +"bkI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office) +"bkJ" = (/obj/structure/filingcabinet/filingcabinet,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bkK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bkL" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bkM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bkN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bkO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bkP" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bkQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bkR" = (/turf/simulated/floor/plating,/area/quartermaster/storage) +"bkS" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/obj/docking_port/mobile/supply{dir = 4; dwidth = 5; width = 12},/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "supply bay"; width = 12},/turf/simulated/floor/plating,/area/shuttle/supply) +"bkT" = (/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"bkU" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"bkV" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/chapel/main) +"bkW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/chapel/main) +"bkX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/medical/morgue) +"bkY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bkZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bla" = (/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/camera{c_tag = "Chemistry"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) +"blb" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"blc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bld" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"ble" = (/obj/machinery/chem_master{pixel_x = -2},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) +"blf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"blg" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"blh" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bli" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"blj" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"blk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bll" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/port) +"blm" = (/obj/structure/table,/turf/simulated/floor/wood,/area/maintenance/port) +"bln" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/badrecipe,/turf/simulated/floor/wood,/area/maintenance/port) +"blo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/maintenance/port) +"blp" = (/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/port) +"blq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/captain) +"blr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/captain) +"bls" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"blt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"blu" = (/obj/machinery/power/apc{cell_type = 10000; dir = 4; name = "Command Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"blv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"blw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"blx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance{name = "Command Maintenance"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bly" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"blz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"blA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"blB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"blC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"blD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"blE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"blF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"blG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hallway/primary/starboard) +"blH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) +"blI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"blJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"blK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"blL" = (/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"blM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"blN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"blO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"blP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"blQ" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0; pixel_x = 32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/quartermaster/storage) +"blR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/quartermaster/storage) +"blS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) +"blT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/floor/plating,/area/quartermaster/storage) +"blU" = (/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; name = "Loading Doors"; pixel_x = -24; pixel_y = 8},/obj/machinery/button/door{id = "QMLoaddoor"; name = "Loading Doors"; pixel_x = -24; pixel_y = -8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) +"blV" = (/turf/simulated/floor/carpet,/area/chapel/main) +"blW" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"blX" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"blY" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint{name = "Fore Port Maintenance"}) +"blZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bma" = (/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/table/glass,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) +"bmb" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) +"bmc" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) +"bmd" = (/obj/structure/bed/chair{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bme" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bmf" = (/obj/machinery/microwave,/obj/structure/table,/turf/simulated/floor/wood,/area/maintenance/port) +"bmg" = (/turf/simulated/floor/wood{tag = "icon-wood-broken2"; icon_state = "wood-broken2"},/area/maintenance/port) +"bmh" = (/obj/structure/bed/stool,/turf/simulated/floor/wood,/area/maintenance/port) +"bmi" = (/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) +"bmj" = (/obj/structure/bed/stool,/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/port) +"bmk" = (/turf/simulated/floor/wood{tag = "icon-wood-broken7"; icon_state = "wood-broken7"},/area/maintenance/port) +"bml" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plating,/area/maintenance/port) +"bmm" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bmo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bmp" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bmq" = (/obj/structure/table/wood,/obj/item/weapon/coin/plasma,/obj/item/weapon/hand_tele,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bmr" = (/obj/structure/table/wood,/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bms" = (/turf/simulated/wall/r_wall,/area/teleporter) +"bmt" = (/turf/simulated/wall,/area/teleporter) +"bmu" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bmv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bmw" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bmx" = (/obj/item/trash/can,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bmy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bmz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bmA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/primary/starboard) +"bmB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office) +"bmC" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMDeliver"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bmD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bmE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bmF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bmG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bmH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bmI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bmJ" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMUnload"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bmK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bmL" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/shuttle/supply) +"bmM" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"bmN" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"bmO" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"bmP" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bmQ" = (/obj/machinery/reagentgrinder,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = -30; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) +"bmR" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) +"bmS" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"bmT" = (/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating,/area/maintenance/port) +"bmU" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) +"bmV" = (/turf/simulated/floor/wood{tag = "icon-wood-broken3"; icon_state = "wood-broken3"},/area/maintenance/port) +"bmW" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/port) +"bmX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood,/area/maintenance/port) +"bmY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) +"bmZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bna" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/port) +"bnb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bnc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/maintenance/port) +"bnd" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30; pixel_y = 0},/obj/structure/filingcabinet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bne" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bnf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bng" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bnh" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/effect/landmark/start{name = "Captain"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bni" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bnj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/teleporter) +"bnk" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/obj/structure/table,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bnl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bnm" = (/obj/machinery/camera{c_tag = "Teleporter"},/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bnn" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bno" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/teleporter) +"bnp" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel/black,/area/teleporter) +"bnq" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bnr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bns" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bnt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bnu" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bnv" = (/obj/machinery/conveyor{dir = 8; id = "QMDeliver"},/turf/simulated/floor/plating,/area/quartermaster/office) +"bnw" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMDeliver"},/turf/simulated/floor/plating,/area/quartermaster/office) +"bnx" = (/obj/machinery/conveyor{dir = 8; id = "QMDeliver"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/quartermaster/office) +"bny" = (/obj/machinery/power/apc{dir = 2; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bnz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bnA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bnB" = (/obj/machinery/power/apc{dir = 2; name = "Cargo Bay APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bnC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bnD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bnE" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) +"bnF" = (/obj/machinery/conveyor{dir = 4; id = "QMUnload"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bnG" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bnH" = (/obj/machinery/conveyor{dir = 4; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bnI" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 4; id = "QMUnload"},/turf/simulated/floor/plating,/area/shuttle/supply) +"bnJ" = (/obj/structure/bed/chair{dir = 4},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"bnK" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"bnL" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"bnM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/chapel/main) +"bnN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"bnO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"bnP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"bnQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bnR" = (/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 7; pixel_y = 4},/obj/item/weapon/storage/pill_bottle/epinephrine{pixel_x = 3},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHWEST)"; icon_state = "whiteyellow"; dir = 10},/area/medical/chemistry) +"bnS" = (/turf/simulated/floor/plasteel/whiteyellow/corner{tag = "icon-whiteyellowcorner (WEST)"; icon_state = "whiteyellowcorner"; dir = 8},/area/medical/chemistry) +"bnT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bnU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bnV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bnW" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bnX" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bnY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bnZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"boa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"bob" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"boc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"bod" = (/turf/space,/area/crew_quarters/cafeteria) +"boe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) +"bof" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) +"bog" = (/obj/machinery/door/airlock/maintenance{name = "The Lowered Bar"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"boh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"boi" = (/obj/item/stack/sheet/metal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"boj" = (/obj/item/weapon/rack_parts,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bok" = (/obj/item/stack/sheet/glass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bol" = (/obj/structure/door_assembly/door_assembly_mai,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bom" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/port) +"bon" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/port) +"boo" = (/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = -28},/obj/machinery/suit_storage_unit/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bop" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/black,/area/teleporter) +"boq" = (/turf/simulated/floor/plasteel/black,/area/teleporter) +"bor" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel/black,/area/teleporter) +"bos" = (/obj/machinery/teleport/station,/turf/simulated/floor/plasteel/black,/area/teleporter) +"bot" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bou" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bov" = (/turf/simulated/wall,/area/library) +"bow" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/library) +"box" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/library) +"boy" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"boz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"boA" = (/obj/machinery/status_display,/turf/simulated/wall,/area/quartermaster/sorting) +"boB" = (/turf/simulated/wall,/area/quartermaster/sorting) +"boC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/quartermaster/sorting) +"boD" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"boE" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/sorting) +"boF" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/sorting) +"boG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"boH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"boI" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"boJ" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"boK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/chapel/office) +"boL" = (/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (EAST)"; icon_state = "carpetsymbol"; dir = 4},/area/chapel/main) +"boM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"boN" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"boO" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"boP" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/item/weapon/storage/backpack/satchel_chem,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) +"boQ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) +"boR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"boS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"boT" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"boU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"boV" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"boW" = (/obj/structure/table,/obj/item/trash/plate,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"boX" = (/obj/structure/table,/obj/item/trash/sosjerky,/obj/machinery/camera{c_tag = "Cafe South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria) +"boY" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/cafeteria) +"boZ" = (/obj/structure/transit_tube{icon_state = "S-NE"},/turf/space,/area/space) +"bpa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) +"bpb" = (/turf/simulated/wall,/area/crew_quarters/courtroom) +"bpc" = (/turf/simulated/wall/r_wall,/area/crew_quarters/courtroom) +"bpd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"bpe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"bpg" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bph" = (/obj/machinery/computer/communications,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bpi" = (/obj/machinery/computer/card,/obj/item/weapon/card/id/captains_spare,/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bpj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bpk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bpl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/teleporter) +"bpm" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bpn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bpo" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bpp" = (/obj/machinery/firealarm{dir = 2; pixel_y = -28},/obj/machinery/light{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/teleporter) +"bpq" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plasteel/black,/area/teleporter) +"bpr" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bps" = (/obj/item/trash/plate,/obj/item/trash/popcorn,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bpt" = (/obj/item/trash/chips,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bpu" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/trash/candle,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bpv" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) +"bpw" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/simulated/floor/wood,/area/library) +"bpx" = (/turf/simulated/floor/carpet,/area/library) +"bpy" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood,/area/library) +"bpz" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/simulated/floor/wood,/area/library) +"bpA" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/library) +"bpB" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/simulated/floor/wood,/area/library) +"bpC" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bpD" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bpE" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bpF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bpG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bpH" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Cargo Desk"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/device/destTagger,/obj/machinery/camera{c_tag = "Delivery Office North"},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 23},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpN" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpO" = (/obj/machinery/power/apc{dir = 1; name = "Delivery Office APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bpP" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/sorting) +"bpQ" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/storage) +"bpR" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/storage) +"bpS" = (/turf/simulated/wall,/area/quartermaster/storage) +"bpT" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bpU" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bpV" = (/turf/simulated/floor/carpet,/area/chapel/office) +"bpW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/chapel/main) +"bpX" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"bpY" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"bpZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"bqa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) +"bqb" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bqc" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bqd" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) +"bqe" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) +"bqf" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"bqg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"bqi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bqj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bqk" = (/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bql" = (/obj/structure/bed/chair,/obj/machinery/camera{c_tag = "Negotiations Room"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bqm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/courtroom) +"bqp" = (/obj/structure/closet/secure_closet/courtroom,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bqq" = (/obj/structure/bed/chair{name = "Bailiff"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bqr" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bqs" = (/obj/structure/bed/chair{name = "Judge"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/crew_quarters/courtroom) +"bqt" = (/obj/structure/bed/chair{name = "Judge"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Courtroom"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/crew_quarters/courtroom) +"bqu" = (/obj/structure/bed/chair{name = "Judge"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "blue"},/area/crew_quarters/courtroom) +"bqv" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"bqw" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"bqx" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bqy" = (/obj/machinery/power/apc{dir = 1; name = "Captain's Quarters APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bqz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bqA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Command South"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bqB" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"bqC" = (/obj/item/trash/deadmouse,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bqD" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) +"bqE" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/wood,/area/library) +"bqF" = (/turf/simulated/floor/wood,/area/library) +"bqG" = (/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bqH" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bqI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bqJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bqK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/sorting) +"bqL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor_switch/oneway{id = "PackageSort1"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bqM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bqN" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSort2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bqO" = (/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bqP" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSort3"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bqQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bqR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"bqS" = (/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bqT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bqU" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bqV" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bqW" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/supply) +"bqX" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/supply) +"bqY" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/supply) +"bqZ" = (/obj/structure/window,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bra" = (/obj/structure/window,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"brb" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"brc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 0; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"brd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bre" = (/obj/machinery/door/airlock{name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"brf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/office) +"brg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"brh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"bri" = (/obj/machinery/camera{c_tag = "Chapel East"; dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTH)"; icon_state = "carpetsymbol"; dir = 1},/area/chapel/main) +"brj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"brk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"brl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) +"brm" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"brn" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bro" = (/obj/machinery/power/apc{dir = 8; name = "Chapel APC"; pixel_x = -25},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/chapel/main) +"brp" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"brq" = (/obj/structure/table,/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) +"brr" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"brs" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHWEST)"; icon_state = "whiteblue"; dir = 10},/area/medical/medbay) +"brt" = (/obj/machinery/light,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) +"bru" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)"; icon_state = "whiteblue"; dir = 6},/area/medical/medbay) +"brv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"brw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/port) +"brx" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/port) +"bry" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"brz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) +"brA" = (/obj/machinery/power/apc{dir = 1; name = "Cafe APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) +"brB" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "12,13,8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"brC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating/airless,/area/space) +"brD" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-S-Pass"; tag = "icon-E-W-Pass"},/turf/simulated/floor/plating/airless,/area/space) +"brE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating/airless,/area/space) +"brF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"brG" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brH" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brI" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"brN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/courtroom) +"brO" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 0; name = "Station Intercom (Court)"; pixel_x = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) +"brP" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) +"brQ" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) +"brR" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/crew_quarters/courtroom) +"brS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) +"brT" = (/obj/machinery/door/window/southleft{name = "Court Cell"; req_access_txt = "2"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"brU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/maintenance/port) +"brV" = (/turf/simulated/wall/r_wall,/area/maintenance/port) +"brW" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Captain's Bedroom"; dir = 4; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"brX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"brY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"brZ" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bsa" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bsb" = (/obj/structure/sink/kitchen{pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bsc" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bsd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bse" = (/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bsf" = (/obj/machinery/power/apc{dir = 4; name = "Conference Room APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bsg" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bsh" = (/obj/machinery/photocopier{pixel_y = 3},/turf/simulated/floor/wood,/area/library) +"bsi" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Library North"; dir = 8; network = list("MINE")},/turf/simulated/floor/carpet,/area/library) +"bsj" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/library) +"bsk" = (/obj/machinery/door/morgue{name = "Study #1"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/library) +"bsl" = (/obj/machinery/door/morgue{name = "Study #2"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/library) +"bsm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/starboard) +"bsn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/starboard) +"bso" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/blue,/area/quartermaster/sorting) +"bsp" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/red,/area/quartermaster/sorting) +"bsq" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) +"bsr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bss" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bst" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bsu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bsv" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bsw" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor/plating,/area/chapel/office) +"bsx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/chapel/office) +"bsy" = (/obj/machinery/mass_driver{dir = 8; id = "chapelgun"},/obj/machinery/door/window/eastleft,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/chapel/office) +"bsz" = (/obj/machinery/camera{c_tag = "Chapel Mass Driver"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bsA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTHEAST)"; icon_state = "carpetsymbol"; dir = 5},/area/chapel/main) +"bsB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet{tag = "icon-carpetsymbol (NORTHEAST)"; icon_state = "carpetsymbol"; dir = 5},/area/chapel/main) +"bsC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bsD" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bsE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHWEST)"; icon_state = "whiteyellow"; dir = 10},/area/medical/chemistry) +"bsF" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/chemistry) +"bsG" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/button/door{id = "fumehood"; name = "Fume Hood Shutters"; pixel_x = 23; pixel_y = 0},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (SOUTHEAST)"; icon_state = "whiteyellow"; dir = 6},/area/medical/chemistry) +"bsH" = (/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) +"bsI" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/port) +"bsJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/port) +"bsK" = (/obj/machinery/power/apc{dir = 2; name = "Detective APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/security/detectives_office) +"bsL" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsM" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase"; pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsN" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsP" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsR" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/courtroom) +"bsS" = (/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) +"bsU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsV" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bsW" = (/obj/machinery/power/apc{dir = 8; name = "Courtroom APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) +"bsX" = (/turf/simulated/floor/plating,/area/maintenance/port) +"bsY" = (/turf/simulated/floor/plating,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port) +"bsZ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/port) +"bta" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"btb" = (/turf/simulated/wall,/area/crew_quarters/captain) +"btc" = (/obj/structure/toilet{dir = 4},/obj/structure/window,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"btd" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bte" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"btf" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"btg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bth" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bti" = (/obj/structure/bed/chair/comfy/black,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"btj" = (/obj/structure/bed/chair/comfy/black,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"btk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"btl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"btm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"btn" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/wood,/area/library) +"bto" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/library) +"btp" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/library) +"btq" = (/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"btr" = (/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) +"bts" = (/obj/machinery/vending/coffee,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) +"btt" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/turf/simulated/floor/wood,/area/library) +"btu" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"btv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"btw" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"btx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/sorting) +"bty" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort1"},/turf/simulated/floor/plasteel/blue,/area/quartermaster/sorting) +"btz" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort2"},/turf/simulated/floor/plasteel/red,/area/quartermaster/sorting) +"btA" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort3"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) +"btB" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"btC" = (/obj/structure/closet/coffin,/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"btD" = (/obj/structure/closet/coffin,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"btE" = (/obj/structure/closet/coffin,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"btF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"btG" = (/obj/machinery/door/airlock{name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"btH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"btI" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"btJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chaplin RC"; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"btK" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 2; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"btL" = (/obj/machinery/alarm{pixel_y = 25},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"btM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/chapel/office) +"btN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"btO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"btP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) +"btQ" = (/obj/machinery/light{dir = 1},/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"btR" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) +"btS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"btT" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/obj/machinery/door/firedoor,/turf/simulated/wall,/area/medical/morgue) +"btU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "fumehood"; name = "fume hood shutter"},/turf/simulated/floor/plating,/area/medical/chemistry) +"btV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"btW" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"btX" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"btY" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"btZ" = (/obj/machinery/light{dir = 1},/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bua" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port) +"bub" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/port) +"buc" = (/turf/simulated/wall/r_wall,/area/hallway/primary/port) +"bud" = (/turf/simulated/wall/r_wall,/area/security/detectives_office) +"bue" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/detectives_office) +"buf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/port) +"bug" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"buh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bui" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"buj" = (/obj/structure/bed/chair{dir = 4; name = "Prosecution"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/crew_quarters/courtroom) +"buk" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/courtroom) +"bul" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/courtroom) +"bum" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) +"bun" = (/obj/structure/bed/chair{dir = 8; name = "Defense"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "green"},/area/crew_quarters/courtroom) +"buo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bup" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"buq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/crew_quarters/heads) +"bur" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads) +"bus" = (/obj/machinery/status_display{density = 0; layer = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) +"but" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"buu" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"buv" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/matches,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"buw" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap/deluxe,/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bux" = (/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"buy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"buz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"buA" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"buB" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"buC" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"buD" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"buE" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"buF" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"buG" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"buH" = (/obj/machinery/power/apc{dir = 2; name = "Primary Tool Storage APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/primary) +"buI" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) +"buJ" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) +"buK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/library) +"buL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) +"buM" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) +"buN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/carpet,/area/library) +"buO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) +"buP" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/library) +"buQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"buR" = (/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"buS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"buT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"buU" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"buV" = (/obj/machinery/conveyor{dir = 2; id = "PackageSort3"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) +"buW" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"buX" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) +"buY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/pods,/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"buZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bva" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bvb" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_3) +"bvc" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_3) +"bvd" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_3) +"bve" = (/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bvf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bvg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bvh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bvi" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bvj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"bvk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/carpet,/area/chapel/main) +"bvl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"bvm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/chapel/main) +"bvn" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) +"bvo" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bvp" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bvq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bvr" = (/turf/simulated/floor/engine,/area/medical/chemistry) +"bvs" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/multitool,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bvt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bvu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bvv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bvw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = -23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bvx" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva) +"bvy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/port) +"bvz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bvA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bvB" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bvC" = (/obj/structure/closet/secure_closet/detective,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bvD" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detective's camera"; pictures_left = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bvE" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/item/device/taperecorder{pixel_x = 3; pixel_y = 0},/obj/item/weapon/storage/box/evidence,/obj/item/device/flashlight/seclite,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bvF" = (/obj/structure/transit_tube{dir = 2; icon_state = "N-SW-SE"; tag = "icon-E-SW-NW"},/turf/space,/area/space) +"bvG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/port) +"bvH" = (/turf/simulated/wall/r_wall,/area/lawoffice) +"bvI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/lawoffice) +"bvJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Negotiation Room"; req_access_txt = "38"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/lawoffice) +"bvK" = (/obj/structure/bed/chair{dir = 4; name = "Prosecution"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/crew_quarters/courtroom) +"bvL" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 10},/area/crew_quarters/courtroom) +"bvM" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) +"bvN" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) +"bvO" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 6},/area/crew_quarters/courtroom) +"bvP" = (/obj/structure/bed/chair{dir = 8; name = "Defense"},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/crew_quarters/courtroom) +"bvQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bvR" = (/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/structure/table/wood,/obj/item/weapon/storage/box/silver_ids,/obj/item/weapon/storage/box/ids,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bvS" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/secure/briefcase,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bvT" = (/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bvU" = (/obj/machinery/computer/ordercomp,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bvV" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bvW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"bvX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"bvY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bvZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bwa" = (/obj/machinery/power/apc{cell_type = 10000; dir = 4; name = "Command Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bwb" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bwc" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bwd" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bwe" = (/turf/simulated/wall,/area/storage/primary) +"bwf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/primary) +"bwg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/storage/primary) +"bwh" = (/turf/simulated/wall/r_wall,/area/storage/primary) +"bwi" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) +"bwj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/library) +"bwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) +"bwl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) +"bwm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/carpet,/area/library) +"bwn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/library) +"bwo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bwp" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bwq" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bwr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bws" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/starboard) +"bwt" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bwu" = (/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bwv" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) +"bww" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) +"bwx" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) +"bwy" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_3) +"bwz" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bwA" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bwB" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bwC" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/camera{c_tag = "Chapel Lobby"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/carpet,/area/chapel/main) +"bwD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/carpet,/area/chapel/main) +"bwE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"bwF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/chapel/main) +"bwG" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/carpet,/area/chapel/main) +"bwH" = (/mob/living/carbon/monkey{health = 1000; maxHealth = 1000; name = "Buster"},/turf/simulated/floor/engine,/area/medical/chemistry) +"bwI" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{active_power_usage = 0; c_tag = "Chemistry Test Chamber"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/turf/simulated/floor/engine,/area/medical/chemistry) +"bwJ" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bwK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bwL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bwM" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/camera{c_tag = "EVA"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bwN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bwO" = (/obj/machinery/vending/sustenance,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/port) +"bwP" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bwQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bwR" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bwS" = (/obj/structure/transit_tube{tag = "icon-NE-SW"; icon_state = "NE-SW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bwT" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bwU" = (/obj/structure/transit_tube{tag = "icon-NW-SE"; icon_state = "NW-SE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bwV" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bwW" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Law office"; name = "Law RC"; pixel_x = 0; pixel_y = 32},/obj/machinery/newscaster{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/wood,/area/lawoffice) +"bwX" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/pen/red,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/lawoffice) +"bwY" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/obj/item/clothing/glasses/sunglasses,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/lawoffice) +"bwZ" = (/obj/machinery/power/apc{dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/lawoffice) +"bxa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) +"bxb" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bxc" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bxd" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bxe" = (/obj/machinery/door/window{dir = 1; name = "Courtroom Door"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bxf" = (/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bxg" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bxh" = (/obj/machinery/door/airlock/maintenance{name = "Courtroom maintenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/courtroom) +"bxi" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) +"bxj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) +"bxk" = (/obj/machinery/recharger,/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = -10},/obj/item/weapon/storage/secure/safe{pixel_x = -26; pixel_y = 4},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bxl" = (/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bxm" = (/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bxn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxp" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "HoP office"},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxq" = (/obj/machinery/computer/security/mining,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxr" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxt" = (/obj/structure/bed/dogbed,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxu" = (/obj/item/weapon/reagent_containers/glass/bowl,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxw" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bxx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bxy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bxz" = (/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bxA" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/machinery/camera{c_tag = "Meeting Room"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bxC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bxD" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bxE" = (/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bxF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bxG" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel,/area/storage/primary) +"bxH" = (/turf/simulated/floor/plasteel,/area/storage/primary) +"bxI" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/storage/primary) +"bxJ" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel,/area/storage/primary) +"bxK" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; pixel_y = 30},/turf/simulated/floor/plasteel,/area/storage/primary) +"bxL" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"bxM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/storage/primary) +"bxN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) +"bxO" = (/obj/machinery/vending/tool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) +"bxP" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space) +"bxQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/library) +"bxR" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/simulated/floor/wood,/area/library) +"bxS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/wood,/area/library) +"bxT" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/library) +"bxU" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/library) +"bxV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/wood,/area/library) +"bxW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bxX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/starboard) +"bxY" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/starboard) +"bxZ" = (/obj/machinery/conveyor_switch/oneway{id = "PackageSortEnd"},/turf/simulated/floor/plasteel,/area/quartermaster/sorting) +"bya" = (/obj/machinery/conveyor{dir = 5; id = "PackageSort3"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) +"byb" = (/obj/machinery/conveyor{dir = 10; icon_state = "conveyor0"; id = "PackageSort3"},/turf/simulated/floor/plasteel/purple,/area/quartermaster/sorting) +"byc" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"byd" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bye" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"byf" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"byg" = (/obj/machinery/vending/cola,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"byh" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"byi" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"byj" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_3) +"byk" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_3) +"byl" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bym" = (/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"byn" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"byo" = (/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"byp" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/coffee,/turf/simulated/floor/carpet,/area/chapel/main) +"byq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) +"byr" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/chapel/main) +"bys" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"byt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"byu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"byv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"byw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"byx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"byy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"byz" = (/turf/simulated/floor/carpet,/area/security/detectives_office) +"byA" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/carpet,/area/security/detectives_office) +"byB" = (/obj/machinery/computer/security/wooden_tv{density = 0; pixel_x = 3; pixel_y = 2},/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/security/detectives_office) +"byC" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/safe{pixel_x = 32},/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/carpet,/area/security/detectives_office) +"byD" = (/obj/structure/transit_tube{tag = "icon-S-NE"; icon_state = "S-NE"},/turf/simulated/floor/plating/airless,/area/space) +"byE" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/simulated/floor/plating/airless,/area/space) +"byF" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/simulated/floor/plating/airless,/area/space) +"byG" = (/obj/structure/transit_tube{icon_state = "S-NW"},/turf/simulated/floor/plating/airless,/area/space) +"byH" = (/obj/effect/landmark/start{name = "Lawyer"},/obj/structure/bed/chair/office/dark{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/wood,/area/lawoffice) +"byI" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) +"byJ" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) +"byK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/lawoffice) +"byL" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) +"byM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byN" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byO" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byQ" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"byT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/courtroom) +"byU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/port) +"byV" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"byW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"byX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"byY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"byZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bza" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bzb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bzc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bzd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters"; pixel_x = 0; pixel_y = -26; req_access_txt = "3"},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bze" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bzf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bzh" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bzi" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bzj" = (/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/obj/structure/table,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bzk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bzl" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bzm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/primary) +"bzn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"bzo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"bzp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) +"bzq" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood,/area/library) +"bzr" = (/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/library) +"bzs" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) +"bzt" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) +"bzu" = (/obj/item/device/camera_film{pixel_y = 9},/obj/item/device/camera_film{pixel_x = -3; pixel_y = 5},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"bzv" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"bzw" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"bzx" = (/obj/machinery/conveyor{dir = 4; id = "PackageSortEnd"},/turf/simulated/floor/plating,/area/quartermaster/sorting) +"bzy" = (/obj/machinery/conveyor{dir = 4; id = "PackageSortEnd"},/obj/machinery/light,/turf/simulated/floor/plating,/area/quartermaster/sorting) +"bzz" = (/obj/machinery/conveyor{dir = 4; id = "PackageSortEnd"},/obj/machinery/camera{c_tag = "Delivery Office"; dir = 1; network = list("SS13")},/turf/simulated/floor/plating,/area/quartermaster/sorting) +"bzA" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/sorting) +"bzB" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/sorting) +"bzC" = (/obj/machinery/power/apc{dir = 8; name = "Arrivals APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bzD" = (/turf/simulated/floor/plasteel/purple/corner,/area/hallway/secondary/entry) +"bzE" = (/turf/simulated/floor/plasteel/purple/side,/area/hallway/secondary/entry) +"bzF" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/hallway/secondary/entry) +"bzG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bzH" = (/obj/machinery/power/apc{dir = 2; lighting = 3; name = "Chapel Office APC"; pixel_x = 0; pixel_y = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bzI" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/coffee,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet,/area/chapel/main) +"bzJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bzK" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bzL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bzM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bzN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 17},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bzO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bzP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bzQ" = (/obj/machinery/camera{c_tag = "Escape North"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/exit) +"bzR" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/exit) +"bzS" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bzT" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bzU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bzV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bzW" = (/obj/structure/dispenser,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bzX" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/structure/table,/obj/machinery/power/apc{dir = 4; name = "E.V.A. Storage APC"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bzY" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/port) +"bzZ" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/hand_labeler,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bAa" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bAb" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/secure_data,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bAc" = (/obj/structure/transit_tube{icon_state = "N-SE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) +"bAd" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) +"bAe" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/primary/central) +"bAf" = (/obj/structure/transit_tube{icon_state = "D-SE"; tag = "icon-D-NE"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) +"bAg" = (/obj/structure/transit_tube{icon_state = "N-SW"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) +"bAh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/lawoffice) +"bAi" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/clothing/glasses/sunglasses/big,/turf/simulated/floor/wood,/area/lawoffice) +"bAj" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/wood,/area/lawoffice) +"bAk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/wood,/area/lawoffice) +"bAl" = (/obj/machinery/photocopier,/obj/machinery/camera{c_tag = "Law Office"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/wood,/area/lawoffice) +"bAm" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bAn" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bAo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bAp" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bAq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) +"bAr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAs" = (/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAt" = (/obj/machinery/photocopier{pixel_y = 3},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAu" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAv" = (/obj/machinery/pdapainter,/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/computer/secure_data,/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAx" = (/obj/machinery/computer/card,/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAy" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Head of Personnel"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -4},/turf/simulated/floor/wood,/area/crew_quarters/heads) +"bAz" = (/turf/simulated/wall,/area/crew_quarters/heads) +"bAA" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bAB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bAC" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bAD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bAE" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/fore) +"bAF" = (/turf/simulated/wall,/area/bridge/meeting_room) +"bAG" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bAH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bAI" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bAJ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bAK" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/storage/primary) +"bAL" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor/plasteel,/area/storage/primary) +"bAM" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/storage/primary) +"bAN" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel,/area/storage/primary) +"bAO" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/turf/simulated/floor/plasteel,/area/storage/primary) +"bAP" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"bAQ" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) +"bAR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel,/area/storage/primary) +"bAS" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/library) +"bAT" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) +"bAU" = (/obj/item/toy/cards/deck,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"bAV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Quiet Room"; opacity = 1},/turf/simulated/floor/wood,/area/library) +"bAW" = (/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"; name = "Library Desk Door"; pixel_x = 3; req_access_txt = "37"},/turf/simulated/floor/wood,/area/library) +"bAX" = (/obj/structure/table/wood,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = 0},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/wood,/area/library) +"bAY" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bAZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bBa" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bBb" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/hallway/secondary/entry) +"bBc" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/hallway/secondary/entry) +"bBd" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/hallway/secondary/entry) +"bBe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bBf" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"},/area/shuttle/arrival) +"bBg" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/shuttle/arrival) +"bBh" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/arrival) +"bBi" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/arrival) +"bBj" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) +"bBk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/chapel/main) +"bBl" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/carpet,/area/chapel/main) +"bBm" = (/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bBn" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bBo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor,/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bBp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/exit) +"bBq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bBr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bBs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bBt" = (/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/exit) +"bBu" = (/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bBv" = (/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bBw" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bBx" = (/obj/machinery/button/door{id = "EscapeBarShutters"; name = "Escape Bar Shutter Control"; pixel_y = 24; req_access_txt = "18"},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bBy" = (/obj/structure/table/reinforced,/obj/machinery/chem_dispenser/drinks,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bBz" = (/obj/structure/table/reinforced,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bBA" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bBB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bBC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bBD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bBE" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bBF" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bBG" = (/obj/machinery/computer/med_data,/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bBH" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bBI" = (/obj/structure/transit_tube{icon_state = "E-NW"},/obj/structure/sign/directions/science{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = 0; tag = "icon-direction_sci (EAST)"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bBJ" = (/obj/structure/transit_tube/station,/obj/structure/transit_tube_pod{tag = "icon-pod (WEST)"; icon_state = "pod"; dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bBK" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bBL" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bBM" = (/turf/simulated/floor/wood,/area/lawoffice) +"bBN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/wood,/area/lawoffice) +"bBO" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) +"bBP" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bBQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bBR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bBS" = (/obj/machinery/power/apc{dir = 8; name = "Head of Personnel APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/heads) +"bBT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/crew_quarters/heads) +"bBU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) +"bBV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) +"bBW" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; icon_state = "left"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "hop"; layer = 3.1; name = "privacy shutters"; opacity = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/heads) +"bBX" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bBY" = (/obj/item/weapon/bedsheet/hop,/obj/structure/bed,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bBZ" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bCa" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bCb" = (/obj/structure/bed/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/storage/primary) +"bCc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"bCd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"bCe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/storage/primary) +"bCf" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bCg" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bCh" = (/obj/item/weapon/storage/pill_bottle/dice,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"bCi" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/library) +"bCj" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) +"bCk" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/library) +"bCl" = (/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) +"bCm" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bCn" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bCo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bCp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bCq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bCr" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bCs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bCt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bCu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/hallway/secondary/entry) +"bCv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/secondary/entry) +"bCw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/hallway/secondary/entry) +"bCx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bCy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) +"bCz" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bCA" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bCB" = (/obj/structure/bed/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bCC" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bCD" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/arrival) +"bCE" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/arrival) +"bCF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall,/area/chapel/office) +"bCG" = (/turf/simulated/wall,/area/hallway/secondary/exit) +"bCH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) +"bCI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bCJ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/exit) +"bCK" = (/obj/machinery/camera{c_tag = "Escape Bar"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bCL" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/button/door{id = "evaescape"; name = "E.V.A. Escape Shutter Control"; pixel_y = -24; req_access_txt = "18"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 23; pixel_y = -23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCP" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 1; name = "RCD Storage"; pixel_x = 1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCQ" = (/obj/machinery/door/window/northleft{dir = 1; name = "Magboot Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots{pixel_x = 0; pixel_y = 0},/obj/item/clothing/shoes/magboots{pixel_x = 4; pixel_y = -3},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCR" = (/obj/machinery/door/window/northleft{dir = 1; name = "Jetpack Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 4; pixel_y = -1},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 0; pixel_y = 0},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = -4; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"bCS" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bCT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bCU" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) +"bCV" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bCW" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/hallway/primary/central) +"bCX" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/hallway/primary/central) +"bCY" = (/turf/simulated/floor/plasteel{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/hallway/primary/central) +"bCZ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bDa" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/weapon/cartridge/lawyer,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/lawoffice) +"bDb" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/lawoffice) +"bDc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/lawoffice) +"bDd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) +"bDe" = (/obj/structure/closet/lawcloset,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/lawoffice) +"bDf" = (/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1; tag = "icon-applebush"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bDg" = (/obj/machinery/camera{c_tag = "Courtroom Observation"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bDh" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) +"bDi" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/heads) +"bDj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) +"bDk" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) +"bDl" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) +"bDm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) +"bDn" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/heads) +"bDo" = (/obj/machinery/flasher{id = "hopflash"; pixel_x = 28},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/camera{c_tag = "HoP line"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/heads) +"bDp" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bDq" = (/obj/machinery/camera{c_tag = "HoP Bedroom"; dir = 1; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bDr" = (/obj/structure/dresser,/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"bDs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bDt" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bDu" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bDv" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bDw" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bDx" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bDy" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/storage/primary) +"bDz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/storage/primary) +"bDA" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/turf/simulated/floor/plasteel,/area/storage/primary) +"bDB" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel,/area/storage/primary) +"bDC" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/storage/primary) +"bDD" = (/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/storage/primary) +"bDE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/storage/primary) +"bDF" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) +"bDG" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bDH" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bDI" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/library) +"bDJ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) +"bDK" = (/obj/machinery/light,/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) +"bDL" = (/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) +"bDM" = (/obj/machinery/light/small,/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) +"bDN" = (/obj/machinery/light_switch{pixel_y = -28},/turf/simulated/floor/wood,/area/library) +"bDO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) +"bDP" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Starboard Maintenance"}) +"bDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bDR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bDS" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bDT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bDU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) +"bDV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) +"bDW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) +"bDX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) +"bDY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) +"bDZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bEa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) +"bEb" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bEc" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bEd" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bEe" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/escape) +"bEf" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/escape) +"bEg" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/escape) +"bEh" = (/turf/space,/area/shuttle/escape) +"bEi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bEj" = (/obj/structure/table,/obj/machinery/door/poddoor/shutters{id = "EscapeBarShutters"; name = "Escape Bar Shutters"},/turf/simulated/floor/plasteel/bar,/area/hallway/secondary/exit) +"bEk" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evaescape"; name = "E.V.A. Escape Shutter"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva) +"bEl" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evaescape"; name = "E.V.A. Escape Shutter"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva) +"bEm" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/obj/structure/sign/directions/security{pixel_y = -8},/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_med (NORTH)"},/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) +"bEn" = (/obj/structure/sign/directions{tag = "icon-direction_bridge (EAST)"; icon_state = "direction_bridge"; dir = 4},/obj/structure/sign/directions/science{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{dir = 4; icon_state = "direction_eng"; pixel_y = 8; tag = "icon-direction_eng (EAST)"},/turf/simulated/wall/r_wall,/area/hallway/primary/port) +"bEo" = (/turf/simulated/wall/r_wall,/area/hallway/primary/central) +"bEp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bEq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access = null; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bEr" = (/obj/structure/window,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bEs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/window,/obj/structure/window{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bEt" = (/turf/simulated/floor/plasteel{tag = "icon-stairs-old"; icon_state = "stairs-old"},/area/hallway/primary/central) +"bEu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/window,/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bEv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bEw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/port) +"bEx" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) +"bEy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/lawoffice) +"bEz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) +"bEA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) +"bEB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Courtroom"; opacity = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"bEC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/central) +"bED" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/crew_quarters/heads) +"bEE" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"; tag = "loading"},/area/crew_quarters/heads) +"bEF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads) +"bEG" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"; tag = "loading"},/area/crew_quarters/heads) +"bEH" = (/obj/structure/sign/directions{dir = 1; icon_state = "direction_bridge"; pixel_y = -8; tag = "icon-direction_bridge (NORTH)"},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) +"bEI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bEJ" = (/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bEK" = (/obj/structure/sign/directions{dir = 1; icon_state = "direction_bridge"; pixel_y = -8; tag = "icon-direction_bridge (NORTH)"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"bEL" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/storage/primary) +"bEM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/turf/simulated/floor/plasteel,/area/storage/primary) +"bEN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) +"bEO" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/primary) +"bEP" = (/obj/structure/window,/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bEQ" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/structure/window,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"bER" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/library) +"bES" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) +"bET" = (/turf/simulated/wall,/area/hallway/primary/central) +"bEU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/hallway/primary/central) +"bEV" = (/obj/structure/sign/directions/science{tag = "icon-direction_sci (NORTH)"; icon_state = "direction_sci"; dir = 1},/obj/structure/sign/directions{dir = 1; icon_state = "direction_supply"; pixel_y = 8; tag = "icon-direction_supply (NORTH)"},/obj/structure/sign/directions/security{dir = 8; icon_state = "direction_sec"; pixel_y = -8; tag = "icon-direction_sec (WEST)"},/turf/simulated/wall,/area/hallway/primary/starboard) +"bEW" = (/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner,/area/hallway/primary/starboard) +"bEX" = (/turf/simulated/wall,/area/hallway/secondary/entry) +"bEY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bEZ" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window{name = "Arrivals Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/entry) +"bFa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bFb" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bFc" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bFd" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bFf" = (/obj/structure/closet/wardrobe/green,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bFg" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/shuttle/escape) +"bFh" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) +"bFi" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/escape) +"bFj" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"; dir = 2},/area/shuttle/escape) +"bFk" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) +"bFl" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) +"bFm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) +"bFn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bFo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/exit) +"bFp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFq" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFv" = (/obj/machinery/light{dir = 1},/obj/machinery/button/door{id = "evaescape"; name = "E.V.A. Escape Shutter Control"; pixel_y = 24; req_access_txt = "18"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFw" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFx" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/exit) +"bFy" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) +"bFz" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFA" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) +"bFB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) +"bFC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) +"bFD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bFF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bFG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/central) +"bFI" = (/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFJ" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFL" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFO" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/central) +"bFQ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bFR" = (/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bFS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bFT" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/hallway/primary/central) +"bFU" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bFX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bFY" = (/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bGa" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/hallway/primary/central) +"bGb" = (/obj/structure/bed/chair,/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bGc" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bGd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bGe" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard) +"bGf" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/starboard) +"bGg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/warning{dir = 4},/area/hallway/primary/starboard) +"bGh" = (/obj/machinery/door/poddoor/shutters{id = "evaarrival"; name = "E.V.A. Arrival Shutter"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/secondary/entry) +"bGi" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/secondary/entry) +"bGj" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/hallway/secondary/entry) +"bGk" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/secondary/entry) +"bGl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/secondary/entry) +"bGm" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security Post RC"; pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/hallway/secondary/entry) +"bGn" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = null; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bGo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bGp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bGq" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bGr" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bGs" = (/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bGt" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bGu" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"},/area/shuttle/arrival) +"bGv" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/arrival) +"bGw" = (/turf/simulated/wall/shuttle{tag = "icon-swall11 (NORTH)"; icon_state = "swall11"; dir = 1},/area/shuttle/escape) +"bGx" = (/obj/machinery/recharge_station,/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/shuttle/escape) +"bGy" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/shuttle/escape) +"bGz" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/shuttle/escape) +"bGA" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/shuttle/escape) +"bGB" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) +"bGC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bGD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bGE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bGF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bGG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bGH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bGI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bGJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bGK" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bGL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bGM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bGN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bGO" = (/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bGP" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bGQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) +"bGR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) +"bGS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central) +"bGT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central) +"bGU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central) +"bGV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central) +"bGW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{desc = ""; icon_state = "L13"; name = "floor"},/area/hallway/primary/central) +"bGX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/central) +"bGY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bHa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/central) +"bHb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/central) +"bHc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHe" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHf" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bHi" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/secondary/entry) +"bHj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/hallway/secondary/entry) +"bHk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bHl" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/hallway/secondary/entry) +"bHm" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/space) +"bHn" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/shuttle/escape) +"bHo" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bHp" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bHq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bHr" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) +"bHs" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/shuttle/escape) +"bHt" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) +"bHu" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/shuttle/escape) +"bHv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bHw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bHx" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bHy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bHz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bHA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/hallway/primary/port) +"bHB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/hallway/primary/central) +"bHC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHE" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHF" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"bHG" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/turf/space,/area/space) +"bHH" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) +"bHI" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHJ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHL" = (/turf/simulated/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central) +"bHM" = (/turf/simulated/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central) +"bHN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers"; location = "EVA"},/turf/simulated/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central) +"bHO" = (/turf/simulated/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central) +"bHP" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "EVA2"},/turf/simulated/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central) +"bHQ" = (/turf/simulated/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central) +"bHR" = (/turf/simulated/floor/plasteel{desc = ""; icon_state = "L14"},/area/hallway/primary/central) +"bHS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHT" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bHV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/hallway/primary/starboard) +"bHW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bHX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bHY" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/hallway/secondary/entry) +"bHZ" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/entry) +"bIa" = (/obj/structure/closet/secure_closet/security,/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/entry) +"bIb" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/obj/machinery/computer/card,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/hallway/secondary/entry) +"bIc" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bId" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/lighter{pixel_x = 4; pixel_y = 2},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bIe" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) +"bIf" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/space) +"bIg" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/shuttle/escape) +"bIh" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/escape) +"bIi" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bIj" = (/obj/machinery/space_heater,/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) +"bIk" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bIl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"bIm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/central) +"bIn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bIo" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bIp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/central) +"bIq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIr" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 15},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bIt" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 21},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIu" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIv" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 20},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIw" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 19},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIx" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 16},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bIz" = (/obj/structure/disposalpipe/sortjunction{dir = 4; sortType = 18},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bIA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bIB" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/button/door{id = "evaarrival"; name = "E.V.A. Arrival Shutter Control"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/starboard) +"bIC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) +"bID" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 1; name = "Arrivals Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/shutters{id = "secpost1"; name = "shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/entry) +"bIE" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bIF" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) +"bIG" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/space) +"bIH" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) +"bII" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/shuttle/escape) +"bIJ" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bIK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bIL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bIM" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/secondary/exit) +"bIN" = (/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIS" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIT" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/exit) +"bIU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) +"bIV" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) +"bIW" = (/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/port) +"bIX" = (/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"bIY" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"bIZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"bJa" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port) +"bJb" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bJc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/central) +"bJd" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bJe" = (/obj/machinery/vending/sovietsoda,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bJf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bJg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/central) +"bJh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bJi" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bJj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/central) +"bJk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bluecorner"},/area/hallway/primary/central) +"bJl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bJm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/central) +"bJn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/hallway/primary/central) +"bJo" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bJp" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/hallway/primary/central) +"bJq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/hallway/primary/central) +"bJr" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/central) +"bJs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/hallway/primary/central) +"bJt" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/hallway/primary/central) +"bJu" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"bJv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"bJw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard) +"bJx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/starboard) +"bJy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bJz" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bJA" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bJB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bJC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) +"bJD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) +"bJE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) +"bJF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry) +"bJG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) +"bJH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bJI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/entry) +"bJJ" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-bcircuit"; icon_state = "bcircuit"},/area/space) +"bJK" = (/obj/machinery/bot/medbot{name = "\improper emergency medibot"; pixel_x = -3; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{tag = "icon-delivery"; icon_state = "delivery"},/area/shuttle/escape) +"bJL" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/shuttle/escape) +"bJM" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning"; icon_state = "warning"},/area/shuttle/escape) +"bJN" = (/obj/machinery/button/door{id = "shuttlecargo"; name = "Cargo Shutters"; pixel_y = -26},/turf/simulated/floor/plasteel/shuttle{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/shuttle/escape) +"bJO" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bJP" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bJQ" = (/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bJR" = (/obj/structure/flora/kirbyplants,/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Escape Central"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bJS" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bJT" = (/turf/simulated/wall,/area/storage/auxillary) +"bJU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/auxillary) +"bJV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bJW" = (/turf/simulated/wall/r_wall,/area/storage/auxillary) +"bJX" = (/obj/machinery/door/airlock{name = "Escape Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plasteel/airless,/area/hallway/secondary/exit) +"bJY" = (/turf/simulated/wall/r_wall,/area/security/brig) +"bJZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) +"bKa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) +"bKb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) +"bKc" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/hallway/primary/central) +"bKd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bKe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (EAST)"; icon_state = "blueyellow"; dir = 4},/area/hallway/primary/central) +"bKf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/janitor) +"bKg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/janitor) +"bKh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/janitor) +"bKi" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/space) +"bKj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor) +"bKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/janitor) +"bKl" = (/turf/simulated/wall,/area/janitor) +"bKm" = (/turf/simulated/wall/r_wall,/area/janitor) +"bKn" = (/turf/simulated/wall/r_wall,/area/atmos) +"bKo" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/atmos) +"bKp" = (/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8},/obj/structure/sign/directions/medical{dir = 8; icon_state = "direction_med"; pixel_x = 0; pixel_y = -8; tag = "icon-direction_med (WEST)"},/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_y = 8; tag = "icon-direction_evac (NORTH)"},/turf/simulated/wall,/area/atmos) +"bKq" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/aft) +"bKr" = (/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"bKs" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) +"bKt" = (/obj/structure/sign/directions/science{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = 0; tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{pixel_y = -8},/obj/structure/sign/directions{dir = 4; icon_state = "direction_supply"; pixel_y = 8; tag = "icon-direction_supply (EAST)"},/turf/simulated/wall,/area/hydroponics) +"bKu" = (/turf/simulated/wall,/area/hydroponics) +"bKv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hydroponics) +"bKw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor/plasteel,/area/hydroponics) +"bKx" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bKy" = (/obj/structure/sign/barsign,/turf/simulated/wall,/area/crew_quarters/bar) +"bKz" = (/turf/simulated/wall,/area/crew_quarters/bar) +"bKA" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{desc = "Closing time; time for you to head out to the places you will be from."; id = "BarShutters"; name = "Bar Shutters"},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/bar) +"bKB" = (/turf/simulated/wall,/area/crew_quarters/theatre) +"bKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/theatre) +"bKD" = (/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_y = -8; tag = "icon-direction_evac (NORTH)"},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8},/obj/structure/sign/directions/medical{dir = 8; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_med (WEST)"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/crew_quarters/theatre) +"bKE" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bKF" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKG" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKH" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKJ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKK" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) +"bKM" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/space) +"bKN" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/space) +"bKO" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3 (NORTH)"; icon_state = "swallc3"; dir = 1},/area/shuttle/escape) +"bKP" = (/obj/machinery/door/poddoor/shutters{name = "Escape Shuttle Cargo Shutters"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) +"bKQ" = (/obj/machinery/door/poddoor/shutters{id = "shuttlecargo"; name = "Escape Shuttle Cargo Shutters"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) +"bKR" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"; dir = 2},/area/shuttle/escape) +"bKS" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 0},/obj/structure/grille,/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bKT" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bKU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bKV" = (/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bKW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bKX" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bKY" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 2},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bKZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bLa" = (/turf/simulated/floor/plasteel/darkred,/area/space) +"bLb" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/darkred,/area/space) +"bLc" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/brig) +"bLd" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) +"bLe" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/brig) +"bLf" = (/turf/simulated/floor/plasteel/black,/area/security/brig) +"bLg" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bLh" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bLi" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bLj" = (/turf/simulated/wall,/area/security/brig) +"bLk" = (/obj/structure/table,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel,/area/security/brig) +"bLl" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bLm" = (/obj/structure/closet/wardrobe/red,/obj/machinery/camera{c_tag = "Security Locker Room"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bLn" = (/obj/structure/closet/l3closet/security,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bLo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/security/brig) +"bLp" = (/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bLq" = (/obj/structure/rack,/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bLr" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/hallway/primary/central) +"bLs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bLt" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/central) +"bLu" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/central) +"bLv" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/janitor) +"bLw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel,/area/janitor) +"bLx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bLy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/turf/simulated/floor/plasteel,/area/janitor) +"bLz" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/structure/bed/chair/janicart,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bLA" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/janitor) +"bLB" = (/obj/structure/closet/jcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bLC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/janitor) +"bLD" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plating,/area/atmos) +"bLE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/atmos) +"bLF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/atmos) +"bLG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) +"bLH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) +"bLI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/atmos) +"bLJ" = (/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) +"bLK" = (/turf/simulated/floor/plasteel,/area/hydroponics) +"bLL" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hydroponics) +"bLM" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/hydroponics) +"bLN" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) +"bLO" = (/obj/item/seeds/wheatseed,/obj/item/seeds/sugarcaneseed,/obj/item/seeds/potatoseed,/obj/item/seeds/appleseed,/obj/item/weapon/grown/corncob,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Botany North"},/turf/simulated/floor/plasteel,/area/hydroponics) +"bLP" = (/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) +"bLQ" = (/turf/simulated/floor/plasteel,/area/crew_quarters/bar) +"bLR" = (/obj/structure/flora/kirbyplants{layer = 4.1},/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bLS" = (/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bLT" = (/obj/machinery/light{dir = 1},/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bLU" = (/obj/structure/rack,/obj/item/weapon/twohanded/spear{desc = "This spear has had it's tip blunted. Shouldn't be able to hurt anyone now."; embed_chance = 2; embedded_fall_chance = 10; embedded_fall_pain_multiplier = 10; embedded_impact_pain_multiplier = 5; embedded_pain_chance = 10; force = 0; force_unwielded = 0; force_wielded = 0; name = "Mock Spear"; throwforce = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bLV" = (/obj/structure/rack,/obj/item/toy/gun,/obj/item/toy/gun,/obj/item/toy/ammo/gun,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bLW" = (/obj/structure/rack,/obj/machinery/syndicatebomb/training,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bLX" = (/obj/machinery/vending/autodrobe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bLY" = (/obj/structure/table,/obj/structure/mirror{pixel_y = 24},/obj/item/weapon/lipstick/random,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bLZ" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMa" = (/obj/structure/table,/obj/structure/mirror{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/obj/machinery/camera{c_tag = "Backstage"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMb" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/lipstick/random,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMc" = (/obj/structure/table,/obj/structure/mirror{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMd" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/landmark/costume,/obj/effect/landmark/costume,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/theatre) +"bMe" = (/obj/structure/closet/wardrobe/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMf" = (/obj/machinery/power/apc{dir = 1; name = "Theater Storage APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bMh" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bMi" = (/obj/machinery/status_display,/turf/simulated/wall,/area/storage/testroom) +"bMj" = (/turf/simulated/wall,/area/storage/testroom) +"bMk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/testroom) +"bMl" = (/obj/machinery/door/airlock/maintenance{name = "Terrarium Maintence"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/storage/testroom) +"bMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/storage/testroom) +"bMn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Terrarium"},/turf/simulated/floor/plasteel,/area/storage/testroom) +"bMo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Terrarium"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/testroom) +"bMp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/testroom) +"bMq" = (/obj/machinery/button/door{id = "shuttlecargo"; name = "Cargo Shutters"; pixel_y = 26; req_access_txt = "50"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bMr" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{dheight = 0; dir = 8; dwidth = 9; height = 20; width = 18},/obj/docking_port/stationary{dheight = 0; dir = 8; dwidth = 9; height = 20; id = "emergency_home"; name = "Escape Home"; width = 18},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bMs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/corner,/area/hallway/secondary/exit) +"bMt" = (/turf/simulated/floor/plasteel/purple/side,/area/hallway/secondary/exit) +"bMu" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/hallway/secondary/exit) +"bMv" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bMw" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bMx" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bMy" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bMz" = (/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bMA" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bMB" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plasteel/darkred,/area/space) +"bMC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"bMD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/security/brig) +"bME" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bMF" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) +"bMG" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump,/turf/simulated/floor/plasteel/black,/area/security/brig) +"bMH" = (/obj/structure/table,/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/melee/baton/loaded,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/security/brig) +"bMI" = (/turf/simulated/floor/plasteel,/area/security/brig) +"bMJ" = (/obj/machinery/atmospherics/components/unary/vent_pump,/turf/simulated/floor/plasteel,/area/security/brig) +"bMK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/security/brig) +"bML" = (/obj/machinery/door/airlock/glass_security{name = "Gear Room"; req_access_txt = "0"; req_one_access_txt = "1;4"},/turf/simulated/floor/plasteel,/area/security/brig) +"bMM" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/rack,/obj/item/weapon/storage/box/firingpins,/obj/item/weapon/storage/box/firingpins{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bMN" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/wall,/area/janitor) +"bMO" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/tubes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bMP" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Janitor"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/janitor) +"bMQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/janitor) +"bMR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/janitor) +"bMS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/janitor) +"bMT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/janitor) +"bMU" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/janitor) +"bMW" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plating,/area/atmos) +"bMX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/atmos) +"bMY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plating,/area/atmos) +"bMZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) +"bNa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) +"bNb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/atmos) +"bNc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) +"bNd" = (/turf/simulated/floor/plasteel/green/corner,/area/hydroponics) +"bNe" = (/turf/simulated/floor/plasteel/green/side,/area/hydroponics) +"bNf" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/hydroponics) +"bNg" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 8; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/machinery/door/poddoor/shutters/preopen{id = "HydroShutters"; name = "Hydroponics Shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"; tag = "icon-whitehall (WEST)"},/area/hydroponics) +"bNh" = (/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bNi" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bNj" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bNk" = (/obj/item/weapon/rack_parts,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bNr" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/theatre) +"bNs" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bNt" = (/obj/structure/table,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/storage/testroom) +"bNu" = (/turf/simulated/floor/plating,/area/storage/testroom) +"bNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/storage/testroom) +"bNw" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Terrarium APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/storage/testroom) +"bNx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/storage/testroom) +"bNy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/storage/testroom) +"bNz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) +"bNA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/testroom) +"bNB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) +"bNC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/storage/testroom) +"bND" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) +"bNE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/storage/testroom) +"bNF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/grass,/area/storage/testroom) +"bNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/grass,/area/storage/testroom) +"bNH" = (/obj/machinery/camera{c_tag = "Terrarium North"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/grass,/area/storage/testroom) +"bNI" = (/turf/simulated/floor/grass,/area/storage/testroom) +"bNJ" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 5},/area/space) +"bNK" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bNL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/hallway/secondary/exit) +"bNM" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"},/area/hallway/secondary/exit) +"bNN" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/hallway/secondary/exit) +"bNO" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bNP" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bNQ" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bNR" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bNS" = (/obj/structure/closet/radiation,/turf/simulated/floor/plasteel/darkred,/area/space) +"bNT" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/brig) +"bNU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) +"bNV" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/brig) +"bNW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) +"bNX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) +"bNY" = (/obj/structure/table,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -28},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 7},/turf/simulated/floor/plasteel,/area/security/brig) +"bNZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/brig) +"bOa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/brig) +"bOb" = (/obj/structure/rack,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/brig) +"bOc" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics Lounge"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/hallway/primary/central) +"bOd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor) +"bOe" = (/obj/structure/table,/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; name = "Janitor RC"; pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/plasteel,/area/janitor) +"bOf" = (/turf/simulated/floor/plasteel,/area/janitor) +"bOg" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/janitor) +"bOh" = (/obj/structure/janitorialcart,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/janitor) +"bOi" = (/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/janitor) +"bOj" = (/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bOk" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/components/unary/vent_pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/janitor) +"bOl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) +"bOm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/atmos) +"bOn" = (/turf/simulated/floor/plating,/area/atmos) +"bOo" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/atmos) +"bOp" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/atmos) +"bOq" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) +"bOr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/atmos) +"bOs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/atmos) +"bOt" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) +"bOu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) +"bOv" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel,/area/hydroponics) +"bOw" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) +"bOx" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) +"bOy" = (/turf/simulated/floor/plasteel/green,/area/hydroponics) +"bOz" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) +"bOA" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bOB" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bOC" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOE" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOF" = (/obj/structure/closet/wardrobe/engineering_yellow,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOG" = (/turf/simulated/floor/plasteel/darkwarning,/area/crew_quarters/theatre) +"bOH" = (/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOI" = (/obj/structure/closet/gmcloset,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOJ" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOK" = (/obj/structure/closet/wardrobe/white/medical,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bON" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/storage/testroom) +"bOO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) +"bOP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plating,/area/storage/testroom) +"bOQ" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = 1; on = 1},/turf/simulated/floor/plating,/area/storage/testroom) +"bOR" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 2; on = 1; tag = ""},/turf/simulated/floor/plating,/area/storage/testroom) +"bOS" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer,/turf/simulated/floor/plating,/area/storage/testroom) +"bOT" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plating,/area/storage/testroom) +"bOU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/storage/testroom) +"bOV" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/grass,/area/storage/testroom) +"bOW" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) +"bOX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/storage/testroom) +"bOY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bOZ" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/storage/testroom) +"bPa" = (/obj/machinery/door/airlock/glass_command{name = "Cockpit"; req_access_txt = "19"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bPb" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/escape) +"bPc" = (/obj/structure/grille,/obj/structure/window/shuttle,/obj/structure/sign/bluecross_2{pixel_x = -32},/turf/simulated/floor/plating,/area/shuttle/escape) +"bPd" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Escape Shuttle Infirmary"; req_access_txt = "0"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bPe" = (/obj/structure/grille,/obj/structure/window/shuttle,/obj/structure/sign/bluecross_2{pixel_x = 32},/turf/simulated/floor/plating,/area/shuttle/escape) +"bPf" = (/obj/machinery/door/airlock/glass_security{name = "Brig"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) +"bPg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/hallway/secondary/exit) +"bPh" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/hallway/secondary/exit) +"bPi" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/hallway/secondary/exit) +"bPj" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bPk" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bPl" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/storage/auxillary) +"bPm" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel/darkred,/area/space) +"bPn" = (/obj/machinery/door/firedoor,/obj/machinery/flasher{id = "secentranceflasher"; pixel_x = -25},/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/brig) +"bPo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) +"bPp" = (/obj/machinery/door/firedoor,/obj/machinery/flasher{id = "secentranceflasher"; pixel_x = 25},/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/brig) +"bPq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/brig) +"bPr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/brig) +"bPs" = (/turf/simulated/wall,/area/security/main) +"bPt" = (/turf/simulated/floor/plasteel,/area/security/main) +"bPu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/main) +"bPv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) +"bPw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHWEST)"; icon_state = "blueyellow"; dir = 10},/area/hallway/primary/central) +"bPx" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/hallway/primary/central) +"bPy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/hallway/primary/central) +"bPz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/hallway/primary/central) +"bPA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/janitor) +"bPB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/janitor) +"bPC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/janitor) +"bPD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/wall/r_wall,/area/janitor) +"bPE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) +"bPF" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bPG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/aft) +"bPH" = (/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) +"bPI" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/hydroponics) +"bPJ" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) +"bPK" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) +"bPL" = (/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (NORTH)"; icon_state = "greencorner"; dir = 1},/area/hydroponics) +"bPM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bPN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bPO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bPP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bPQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bPR" = (/obj/machinery/door/airlock/wood{name = "Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bPS" = (/obj/structure/falsewall,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bPT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/wood{name = "Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"bPU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plating,/area/storage/testroom) +"bPV" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) +"bPW" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = 2; on = 1},/turf/simulated/floor/plating,/area/storage/testroom) +"bPX" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/storage/testroom) +"bPY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) +"bPZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) +"bQa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/storage/testroom) +"bQb" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/storage/testroom) +"bQc" = (/mob/living/simple_animal/chick,/turf/simulated/floor/grass,/area/storage/testroom) +"bQd" = (/obj/item/trash/plate,/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) +"bQe" = (/obj/item/weapon/storage/backpack/satchel_norm,/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) +"bQf" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/grass,/area/storage/testroom) +"bQg" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bQh" = (/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bQi" = (/obj/machinery/status_display{pixel_y = 31},/obj/structure/bed/dogbed,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bQj" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bQk" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bQl" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bQm" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bQn" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -29; pixel_y = 0},/obj/structure/closet/bombcloset,/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) +"bQo" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) +"bQp" = (/obj/structure/flora/kirbyplants,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bQq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Brig North"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/security/brig) +"bQr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) +"bQs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) +"bQt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) +"bQu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/brig) +"bQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/security/brig) +"bQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/main) +"bQx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"bQy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"bQz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/security/main) +"bQA" = (/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/security/main) +"bQB" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 1"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/brig) +"bQC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/light/small{dir = 1},/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Evidence Storage"; dir = 2; network = list("SS13")},/obj/item/weapon/storage/secure/safe{name = "evidence safe"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) +"bQD" = (/obj/structure/closet/secure_closet{anchored = 1; name = "Secure Evidence Closet"; req_access_txt = "0"; req_one_access_txt = "3,4"},/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase"; pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/brig) +"bQE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plating,/area/atmos) +"bQF" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/door/window/northleft{dir = 1; icon_state = "left"; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/atmos) +"bQG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/atmos) +"bQH" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) +"bQI" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/darkwarning,/area/atmos) +"bQJ" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/darkwarning,/area/atmos) +"bQK" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/obj/item/clothing/suit/hooded/wintercoat/engineering/atmos,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkwarning,/area/atmos) +"bQL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkwarning,/area/atmos) +"bQM" = (/obj/machinery/suit_storage_unit/atmos,/turf/simulated/floor/plasteel/darkwarning,/area/atmos) +"bQN" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel/darkwarning,/area/atmos) +"bQO" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bQP" = (/turf/simulated/floor/plasteel,/area/atmos) +"bQQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bQR" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmos North East"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel,/area/atmos) +"bQS" = (/obj/machinery/camera{c_tag = "North Central Aft Hall"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) +"bQT" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; name = "Botany RC"; pixel_x = -31; pixel_y = -2},/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) +"bQU" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel,/area/hydroponics) +"bQV" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hydroponics) +"bQW" = (/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0; pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/weapon/watertank,/obj/item/weapon/grenade/chem_grenade/antiweed,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) +"bQX" = (/obj/structure/table/glass,/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/hydroponics) +"bQY" = (/obj/item/weapon/wrench,/obj/item/clothing/suit/apron,/obj/item/clothing/tie/armband/hydro,/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/hydroponics) +"bQZ" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hydroponics) +"bRa" = (/obj/machinery/chem_master/condimaster{name = "BrewMaster 4000"; pixel_x = -4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hydroponics) +"bRb" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel,/area/hydroponics) +"bRc" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bRd" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bRe" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/bar) +"bRf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRg" = (/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRh" = (/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRi" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRj" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRk" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRl" = (/obj/machinery/alarm{dir = 8; pixel_x = 23; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bRm" = (/obj/structure/table/wood,/obj/item/clothing/head/soft/mime,/obj/item/clothing/mask/gas/mime,/obj/item/clothing/shoes/sneakers/mime,/obj/item/clothing/under/rank/mime,/obj/item/device/pda/mime,/obj/item/weapon/cartridge/mime,/obj/item/weapon/storage/backpack/mime,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bRn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bRo" = (/obj/machinery/door/airlock/wood{name = "Stage Left"; req_access_txt = "46"},/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) +"bRp" = (/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bRq" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bRr" = (/obj/machinery/door/airlock/wood{name = "Stage Right"; req_access_txt = "46"},/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) +"bRs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.1; on = 1},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bRt" = (/obj/structure/table/wood,/obj/item/clothing/mask/gas/clown_hat,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/under/rank/clown,/obj/item/device/pda/clown,/obj/item/weapon/cartridge/clown,/obj/item/weapon/storage/backpack/clown,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bRu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/storage/testroom) +"bRv" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = 3; on = 1},/turf/simulated/floor/plating,/area/storage/testroom) +"bRw" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/storage/testroom) +"bRx" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/turf/simulated/floor/plating,/area/storage/testroom) +"bRy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall,/area/storage/testroom) +"bRz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/grass,/area/storage/testroom) +"bRA" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/storage/testroom) +"bRB" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/storage/testroom) +"bRC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/grass,/area/storage/testroom) +"bRD" = (/obj/machinery/hydroponics/soil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/grass,/area/storage/testroom) +"bRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) +"bRF" = (/obj/machinery/hydroponics/soil,/turf/simulated/floor/grass,/area/storage/testroom) +"bRG" = (/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) +"bRH" = (/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel/redblue,/area/storage/testroom) +"bRI" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bRJ" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bRK" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) +"bRL" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) +"bRM" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/escape) +"bRN" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plasteel/black,/area/security/brig) +"bRO" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/security/brig) +"bRP" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bRQ" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) +"bRR" = (/obj/machinery/camera{c_tag = "Brig Cell One"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/security/brig) +"bRS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/turf/simulated/floor/plating,/area/security/brig) +"bRT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"bRU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) +"bRV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/security/brig) +"bRW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) +"bRX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bRY" = (/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Officer's Quaters"; req_access_txt = "63"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) +"bRZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/security/main) +"bSa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/main) +"bSb" = (/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/main) +"bSc" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 2"},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/main) +"bSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bSe" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 5"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/security/brig) +"bSf" = (/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHWEST)"; icon_state = "blueyellow"; dir = 9},/area/atmos) +"bSg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) +"bSh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) +"bSi" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) +"bSj" = (/obj/machinery/computer/atmos_alert,/obj/machinery/camera{c_tag = "Atmospherics - Control Room"; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) +"bSk" = (/obj/machinery/computer/station_alert,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/atmos) +"bSl" = (/obj/structure/sign/atmosplaque{pixel_x = 0; pixel_y = 32},/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table,/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHEAST)"; icon_state = "blueyellow"; dir = 5},/area/atmos) +"bSm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) +"bSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) +"bSo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6; initialize_directions = 6},/turf/simulated/floor/plasteel,/area/atmos) +"bSp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bSq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/atmos) +"bSr" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bSs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/simulated/floor/plasteel,/area/atmos) +"bSt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) +"bSu" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) +"bSv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/atmos) +"bSw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/atmos) +"bSx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel,/area/hydroponics) +"bSy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/corner,/area/hydroponics) +"bSz" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) +"bSA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/freezer.dmi'; name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bSB" = (/turf/simulated/wall,/area/crew_quarters/kitchen) +"bSC" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSD" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSE" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSF" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSG" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwforce = 1; throwing = 1},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSH" = (/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSI" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSJ" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSK" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bSL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Stage Left"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bSM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bSN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bSO" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bSP" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bSQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bSR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Stage Right"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bSS" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/simulated/floor/plating,/area/storage/testroom) +"bST" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) +"bSU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/storage/testroom) +"bSV" = (/mob/living/simple_animal/butterfly,/turf/simulated/floor/grass,/area/storage/testroom) +"bSW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/grass,/area/storage/testroom) +"bSX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) +"bSY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/storage/testroom) +"bSZ" = (/obj/machinery/computer/emergency_shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bTa" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bTb" = (/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"bTc" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bTd" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bTe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bTf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bTg" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bTh" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/black,/area/security/brig) +"bTi" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/brig) +"bTj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/security/brig) +"bTk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/security/brig) +"bTl" = (/obj/machinery/door/window/brigdoor{dir = 8; id = "Cell 1"; name = "Cell 1"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bTm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"bTn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) +"bTo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/security/brig) +"bTp" = (/turf/simulated/floor/plasteel/red/corner,/area/security/brig) +"bTq" = (/turf/simulated/floor/plasteel/red/side,/area/security/brig) +"bTr" = (/obj/machinery/light,/turf/simulated/floor/plasteel/red/side,/area/security/brig) +"bTs" = (/obj/machinery/camera{c_tag = "Brig North East"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/brig) +"bTt" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/security/main) +"bTu" = (/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/security/main) +"bTv" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/main) +"bTw" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 4"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/brig) +"bTx" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; pixel_y = -2; 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" = "Waste Loop")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/atmos) +"bTy" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bTz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/atmos) +"bTA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/plasteel,/area/atmos) +"bTD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (EAST)"; icon_state = "blueyellow"; dir = 4},/area/atmos) +"bTE" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTG" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel,/area/atmos) +"bTJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) +"bTK" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bTL" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/simulated/floor/plasteel,/area/atmos) +"bTM" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Air to Distro"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bTN" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"; on = 0},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/atmos) +"bTO" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) +"bTP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/space,/area/space) +"bTQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/atmos) +"bTR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "waste_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "mix vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) +"bTS" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) +"bTT" = (/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) +"bTU" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/atmos) +"bTV" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hallway/primary/aft) +"bTW" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/hydroponics) +"bTX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) +"bTY" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/plasteel,/area/hydroponics) +"bTZ" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bUa" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/light_switch{pixel_x = 6; pixel_y = 26},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bUb" = (/obj/structure/sink/kitchen{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Kitchen"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUe" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/freezer.dmi'; name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bUg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bUh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bUi" = (/obj/machinery/computer/slot_machine,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bUj" = (/obj/structure/table/wood,/obj/item/clothing/glasses/monocle,/obj/item/clothing/head/fedora,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bUk" = (/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bUl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bUm" = (/obj/structure/table/wood,/obj/item/clothing/gloves/boxing,/obj/item/clothing/head/rabbitears,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bUn" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/floor/plating,/area/storage/testroom) +"bUo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/storage/testroom) +"bUp" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 2; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; pixel_x = 0; pixel_y = 0; target_pressure = 4500},/turf/simulated/floor/plating,/area/storage/testroom) +"bUq" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) +"bUr" = (/turf/simulated/wall,/area/crew_quarters/fitness) +"bUs" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/shuttle/escape) +"bUt" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bUu" = (/obj/structure/table,/obj/item/weapon/defibrillator/loaded,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bUv" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/retractor{pixel_x = 4},/obj/item/weapon/hemostat{pixel_x = -4},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"bUw" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/camera{c_tag = "Escape South"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bUx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bUy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/brig) +"bUz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bUA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/wall/r_wall,/area/security/brig) +"bUB" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) +"bUC" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/brig) +"bUD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/brig) +"bUE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"bUF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) +"bUG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/corner,/area/security/brig) +"bUH" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/brig) +"bUI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel,/area/security/warden) +"bUJ" = (/turf/simulated/wall,/area/security/warden) +"bUK" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/main) +"bUL" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 0},/turf/simulated/floor/plasteel,/area/security/main) +"bUM" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/main) +"bUN" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/security/main) +"bUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"bUP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = null; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bUQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bUR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bUS" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) +"bUT" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; pixel_y = -2; 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" = "Waste Loop")},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHWEST)"; icon_state = "blueyellow"; dir = 10},/area/atmos) +"bUU" = (/obj/structure/dispenser{pixel_x = -1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) +"bUV" = (/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) +"bUW" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) +"bUX" = (/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) +"bUY" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/atmos) +"bUZ" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHEAST)"; icon_state = "blueyellow"; dir = 6},/area/atmos) +"bVa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) +"bVb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel,/area/atmos) +"bVc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/atmos) +"bVd" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"bVe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"bVf" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/simulated/floor/plasteel,/area/atmos) +"bVg" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bVh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Distro"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"bVi" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bVj" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "waste_in"; name = "Gas Mix Tank Control"; output_tag = "waste_out"; sensors = list("waste_sensor" = "Tank")},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/atmos) +"bVk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/atmos) +"bVl" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "waste_sensor"; output = 63},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) +"bVm" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) +"bVn" = (/obj/machinery/vending/assist,/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/simulated/floor/plasteel/neutral,/area/atmos) +"bVo" = (/turf/simulated/floor/plasteel/black,/area/hydroponics) +"bVp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) +"bVq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/hydroponics) +"bVr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) +"bVs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) +"bVt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) +"bVu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"bVv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bVw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bVx" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVy" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVz" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; dir = 1; name = "Bar RC"; pixel_x = 0; pixel_y = -30},/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/obj/machinery/light,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVA" = (/obj/machinery/vending/boozeomat,/obj/machinery/camera{c_tag = "Bar"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVC" = (/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVE" = (/obj/machinery/door/window/southright{dir = 4; name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVF" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Bar APC"; pixel_x = 0; pixel_y = -25},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) +"bVG" = (/obj/structure/table/wood,/obj/item/clothing/mask/pig,/obj/item/device/instrument/violin{pixel_x = -5},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bVH" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bVI" = (/obj/machinery/door/poddoor/shutters{id = "curtains"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bVJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bVK" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana,/obj/item/clothing/mask/horsehead,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bVL" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/starboard) +"bVM" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bVN" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/storage/testroom) +"bVO" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1; icon_state = "mixer_off_f"; node1_concentration = 1; node2_concentration = 0; on = 1; tag = "icon-mixer_off_f (NORTH)"},/turf/simulated/floor/plating,/area/storage/testroom) +"bVP" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/fitness) +"bVQ" = (/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"bVR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Terrarium"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/storage/testroom) +"bVS" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/storage/testroom) +"bVT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bVU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bVV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bVW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (NORTH)"; icon_state = "greencorner"; dir = 1},/area/storage/testroom) +"bVZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/storage/testroom) +"bWa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/storage/testroom) +"bWb" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/storage/testroom) +"bWc" = (/obj/structure/table,/obj/machinery/status_display{pixel_y = -32},/obj/machinery/recharger{active_power_usage = 0; idle_power_usage = 0; use_power = 0},/obj/item/device/assembly/flash{pixel_x = -5; pixel_y = 5},/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) +"bWd" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/security/brig) +"bWe" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/brig) +"bWf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "Security Backup Control"; dir = 8; network = list("MINE")},/turf/simulated/floor/plating,/area/security/brig) +"bWg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/security/brig) +"bWh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/wall,/area/security/brig) +"bWi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"bWj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/brig) +"bWk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bWl" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bWm" = (/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 30},/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bWn" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/structure/closet/secure_closet/warden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bWo" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3; pixel_y = 5},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel,/area/security/main) +"bWp" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel,/area/security/main) +"bWq" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/main) +"bWr" = (/obj/machinery/syndicatebomb/training,/obj/structure/table,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/security/main) +"bWs" = (/obj/structure/table,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHEAST)"; icon_state = "vault"; dir = 6},/area/security/main) +"bWt" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bWu" = (/obj/structure/filingcabinet/security{pixel_x = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHWEST)"; icon_state = "vault"; dir = 10},/area/security/brig) +"bWv" = (/obj/machinery/camera{c_tag = "Atmospherics - Port"; dir = 4; network = list("SS13")},/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) +"bWw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) +"bWx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) +"bWy" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bWz" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bWA" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Pure to Mix"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"bWB" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bWC" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/atmos) +"bWD" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) +"bWE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/space,/area/space) +"bWF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "waste_in"; pixel_y = 1},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) +"bWG" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/atmos) +"bWH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) +"bWI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) +"bWJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) +"bWK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) +"bWL" = (/obj/machinery/smartfridge,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/space) +"bWM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/space) +"bWN" = (/obj/effect/landmark/start{name = "Cook"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/space) +"bWO" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bWP" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bWQ" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bWR" = (/obj/effect/landmark/start{name = "Cook"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bWS" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bWT" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar) +"bWU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/bar) +"bWV" = (/obj/structure/dresser,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/crew_quarters/theatre) +"bWW" = (/turf/simulated/floor/carpet,/turf/simulated/floor/carpet{tag = "icon-1-w"; icon_state = "1-w"},/obj/machinery/flasher{id = "stageflash"; name = "Pyrotechnics"; pixel_y = 12},/turf/simulated/floor/carpet{tag = "icon-2-e"; icon_state = "2-e"},/area/crew_quarters/theatre) +"bWX" = (/turf/simulated/floor/carpet,/turf/simulated/floor/carpet{tag = "icon-1-w"; icon_state = "1-w"},/turf/simulated/floor/carpet{tag = "icon-2-e"; icon_state = "2-e"},/area/crew_quarters/theatre) +"bWY" = (/obj/structure/dresser,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/redblue,/area/crew_quarters/theatre) +"bWZ" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/storage/testroom) +"bXa" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/storage/testroom) +"bXb" = (/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) +"bXc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/green/side,/area/storage/testroom) +"bXd" = (/turf/simulated/floor/plasteel/green/corner,/area/storage/testroom) +"bXe" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/storage/testroom) +"bXf" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bXg" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable,/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bXh" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "0"; req_one_access_txt = "63, 32"},/turf/simulated/floor/plating,/area/security/brig) +"bXi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bXj" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bXk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/security/brig) +"bXl" = (/obj/machinery/camera{c_tag = "Brig Cell two"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/brig) +"bXm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/brig) +"bXn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"bXo" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) +"bXp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bXq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) +"bXr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bXs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bXt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bXu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) +"bXv" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/security/main) +"bXw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) +"bXx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/security/main) +"bXy" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/main) +"bXz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Air to Port"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"bXA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Mix to Port"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"bXB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Pure to Port"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"bXC" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bXD" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bXE" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/simulated/floor/plasteel,/area/atmos) +"bXF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/hydroponics) +"bXG" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 2; name = "Kitchen Window"; req_access_txt = "28"; req_one_access_txt = "0"},/obj/machinery/door/firedoor,/obj/item/weapon/paper,/obj/machinery/door/window/eastleft{dir = 1; name = "Hydroponics Window"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/crew_quarters/kitchen) +"bXH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bXI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bXJ" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bXK" = (/obj/structure/rack,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bXL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bXM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bXN" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bXO" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bXP" = (/obj/machinery/gibber,/obj/machinery/camera{c_tag = "Cold Room"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bXQ" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bXR" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bXS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bXT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bXU" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bXV" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bXW" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/machinery/camera{c_tag = "Maltese Falcon - Backroom"; dir = 2; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bXX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bXY" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bXZ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bYa" = (/obj/machinery/door/airlock/wood{name = "Stage Right"; req_access_txt = "46"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) +"bYb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bYc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/hallway/primary/starboard) +"bYd" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "diagonalWall3"},/area/shuttle/escape) +"bYe" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/exit) +"bYf" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bYg" = (/turf/simulated/floor/plating,/area/security/brig) +"bYh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/security/brig) +"bYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) +"bYj" = (/obj/machinery/door/window/brigdoor{dir = 8; id = "Cell 2"; name = "Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bYk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bYl" = (/obj/structure/table/reinforced,/obj/item/weapon/crowbar,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/weapon/wirecutters,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bYm" = (/obj/structure/rack,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bYn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bYo" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bYp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/warden) +"bYq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/main) +"bYr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"bYs" = (/obj/structure/rack{pixel_y = 2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = 2; pixel_y = -2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = -3; pixel_y = 3},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Firing Range"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/security/main) +"bYt" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/main) +"bYu" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bYv" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/brig) +"bYw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"bYx" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) +"bYy" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) +"bYz" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"bYA" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bYB" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bYC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 5},/area/atmos) +"bYD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "nitrogen dioxide vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/n20,/area/atmos) +"bYE" = (/turf/simulated/floor/engine/n20,/area/atmos) +"bYF" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hydroponics) +"bYG" = (/obj/machinery/door/window/eastright{dir = 1; name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hydroponics) +"bYH" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/weapon/storage/backpack/satchel_hyd,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) +"bYI" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/weapon/storage/backpack/satchel_hyd,/obj/item/clothing/suit/hooded/wintercoat/hydro,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) +"bYJ" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/machinery/light_switch{pixel_x = -26; pixel_y = 0},/obj/item/weapon/storage/backpack/satchel_hyd,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) +"bYK" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/machinery/camera{c_tag = "Botany South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/hydroponics) +"bYL" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel,/area/hydroponics) +"bYM" = (/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/cultivator,/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hydroponics) +"bYN" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/structure/cable,/obj/machinery/power/apc{cell_type = 2500; dir = 2; name = "Hydroponics APC"; pixel_y = -24},/turf/simulated/floor/plasteel,/area/hydroponics) +"bYO" = (/obj/structure/rack,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bYP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bYQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bYR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bYS" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/processor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bYT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/kitchen) +"bYU" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bYV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Cook"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bYW" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bYX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bYY" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bYZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bZa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bZb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bZc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bZd" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bZe" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{frequency = 1489; name = "Theater Speakers"; pixel_x = -30; pixel_y = 23},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZh" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{frequency = 1489; name = "Theater Speakers"; pixel_x = 30; pixel_y = 23},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/machinery/alarm{pixel_y = 23},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"bZm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"bZn" = (/obj/machinery/camera{c_tag = "Terrarium East"; dir = 1},/turf/simulated/floor/grass,/area/storage/testroom) +"bZo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/storage/testroom) +"bZp" = (/mob/living/simple_animal/cow{name = "Betsy"; real_name = "Betsy"},/turf/simulated/floor/grass,/area/storage/testroom) +"bZq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/apmaint) +"bZr" = (/turf/simulated/wall,/area/maintenance/apmaint) +"bZs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"bZt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/secondary/exit) +"bZu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bZv" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bZw" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"bZx" = (/obj/machinery/atmospherics/components/unary/tank{dir = 1},/turf/simulated/floor/plasteel/black,/area/security/brig) +"bZy" = (/turf/simulated/floor/plasteel/black{burnt = 1},/area/security/brig) +"bZz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/brig) +"bZA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"bZB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 4; name = "Brig Control Desk"; req_access_txt = "3"},/obj/item/weapon/paper,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/warden) +"bZC" = (/obj/effect/landmark/start{name = "Warden"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bZD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bZE" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"bZF" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 8; name = "Brig Control Desk"; req_access_txt = "3"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/security/warden) +"bZG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/security/main) +"bZH" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) +"bZI" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/main) +"bZJ" = (/obj/structure/table,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel,/area/security/main) +"bZK" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/main) +"bZL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security E.V.A. Storage"; req_access_txt = "3"},/turf/simulated/floor/plasteel,/area/security/main) +"bZM" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Security - EVA Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/main) +"bZN" = (/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) +"bZO" = (/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"bZP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; frequency = 1443; id_tag = "air_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"bZQ" = (/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id = "mair_out_meter"; name = "Mixed Air Tank Out"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) +"bZR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/space,/area/space) +"bZS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plating,/area/atmos) +"bZT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/white,/area/atmos) +"bZU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) +"bZV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) +"bZW" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bZX" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 4},/area/atmos) +"bZY" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/turf/simulated/floor/engine/n20,/area/atmos) +"bZZ" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/engine/n20,/area/atmos) +"caa" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine/n20,/area/atmos) +"cab" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/turf/simulated/floor/plating,/area/hydroponics) +"cac" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"cad" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"cae" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"caf" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/device/radio/intercom{pixel_y = -25},/obj/item/weapon/kitchen/rollingpin,/obj/machinery/camera{c_tag = "Kitchen"; dir = 1; network = list("SS13")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"cag" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"cah" = (/obj/machinery/food_cart,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"cai" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"caj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"cak" = (/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/freezer.dmi'; name = "Kitchen Cold Room"; req_access_txt = "28"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cal" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cam" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"can" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cao" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cap" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "wood"},/area/crew_quarters/kitchen) +"caq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"car" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cas" = (/obj/machinery/light/small{dir = 2},/obj/item/weapon/vending_refill/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cat" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cau" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cav" = (/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"caw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"cax" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"cay" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"caz" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Theater"; dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"caA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"caB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) +"caC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"caD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"caE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"caF" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Fitness East"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"caG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Garden"},/turf/simulated/floor/plasteel,/area/storage/testroom) +"caH" = (/obj/item/toy/beach_ball{desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen"; item_state = "beachball"; name = "NanoTrasen brand beach ball"; pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/grass,/area/storage/testroom) +"caI" = (/turf/simulated/floor/plating,/area/maintenance/apmaint) +"caJ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"caK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"caL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"caM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"caN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"caO" = (/turf/simulated/wall/r_wall,/area/maintenance/apmaint) +"caP" = (/turf/simulated/wall/r_wall,/area/security/processing) +"caQ" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "63"},/turf/simulated/floor/plating,/area/security/processing) +"caR" = (/turf/simulated/wall/r_wall,/area/security/prison) +"caS" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"caT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/security/brig) +"caU" = (/obj/structure/table,/obj/machinery/button/door{id = "Secure Gate"; name = "Brig Lockdown"; pixel_x = 6; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"caV" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"caW" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"caX" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"caY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/warden) +"caZ" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/radio/off,/turf/simulated/floor/plasteel,/area/security/main) +"cba" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/secure/briefcase,/turf/simulated/floor/plasteel,/area/security/main) +"cbb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor/plasteel,/area/security/main) +"cbc" = (/turf/simulated/wall/r_wall,/area/security/main) +"cbd" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"cbe" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"cbf" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "air_sensor"; output = 7},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"cbg" = (/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")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/white,/area/atmos) +"cbh" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plasteel,/area/atmos) +"cbi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/atmos) +"cbj" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/atmos) +"cbk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/atmos) +"cbl" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = 4; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"cbm" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/atmos) +"cbn" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/simulated/floor/engine/n20,/area/atmos) +"cbo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/atmos) +"cbp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/atmos) +"cbq" = (/turf/simulated/wall,/area/crew_quarters/locker) +"cbr" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cbs" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cbt" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cbu" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/obj/machinery/camera{c_tag = "Dorms West"; dir = 2; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cbv" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cbw" = (/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cbx" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"cby" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Dorms Washroom"},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"cbz" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 1; icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) +"cbA" = (/obj/structure/closet/crate{desc = "It's a storage unit for kitchen clothes and equipment."; name = "Kitchen Crate"},/obj/item/clothing/head/chefhat,/obj/item/clothing/under/rank/chef,/obj/item/weapon/storage/box/mousetraps{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/mousetraps,/obj/item/clothing/under/waiter,/obj/item/clothing/under/waiter,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cbB" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 1; icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) +"cbC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/icecream_vat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cbD" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"cbE" = (/obj/machinery/door/airlock/wood{name = "Backstage"; req_access_txt = "46"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"cbF" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/theatre) +"cbG" = (/obj/machinery/door/airlock/glass{name = "Theater"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) +"cbH" = (/obj/machinery/door/airlock/glass{name = "Theater"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/crew_quarters/theatre) +"cbI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cbJ" = (/obj/machinery/camera{c_tag = "Garden"; dir = 4; network = list("SS13")},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/obj/machinery/light_switch{pixel_y = 23},/turf/simulated/floor/plasteel,/area/storage/testroom) +"cbK" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/storage/testroom) +"cbL" = (/obj/item/seeds/appleseed,/obj/item/seeds/bananaseed,/obj/item/seeds/cocoapodseed,/obj/item/seeds/grapeseed,/obj/item/seeds/orangeseed,/obj/item/seeds/sugarcaneseed,/obj/item/seeds/wheatseed,/obj/item/seeds/watermelonseed,/obj/structure/table/glass,/obj/item/seeds/towermycelium,/turf/simulated/floor/plasteel,/area/storage/testroom) +"cbM" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/storage/testroom) +"cbN" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/storage/testroom) +"cbO" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cbP" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cbQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cbR" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cbS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) +"cbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/apmaint) +"cbU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/apmaint) +"cbV" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) +"cbW" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) +"cbX" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/camera{c_tag = "Prison Sanitatium"; dir = 4; network = list("SS13","Prison"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTHWEST)"; icon_state = "whitered"; dir = 9},/area/security/processing) +"cbY" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/processing) +"cbZ" = (/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/processing) +"cca" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = -5; pixel_y = 6},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/processing) +"ccb" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/prison) +"ccc" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/vending/wallmed{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-whitered (NORTHEAST)"; icon_state = "whitered"; dir = 5},/area/security/prison) +"ccd" = (/obj/machinery/camera{c_tag = "Brig Cell three"; dir = 2; network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/brig) +"cce" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"ccf" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"ccg" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Brig Control APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Warden's Office"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"cch" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/security/main) +"cci" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 8},/turf/simulated/floor/plasteel,/area/security/main) +"ccj" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"cck" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"ccl" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/main) +"ccm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"ccn" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 7},/turf/simulated/floor/plasteel,/area/security/main) +"cco" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "63"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/security/main) +"ccp" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plating,/area/security/main) +"ccq" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/security/main) +"ccr" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/security/brig) +"ccs" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"cct" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) +"ccu" = (/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id = "mair_in_meter"; name = "Mixed Air Tank In"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) +"ccv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel/white,/area/atmos) +"ccw" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/plasteel,/area/atmos) +"ccx" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) +"ccy" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/plasteel,/area/atmos) +"ccz" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"ccA" = (/obj/machinery/camera{c_tag = "South Central Aft Hall"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/primary/aft) +"ccB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/locker) +"ccC" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccD" = (/obj/structure/table,/obj/item/weapon/razor,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"ccE" = (/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"ccF" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"ccG" = (/obj/structure/table/wood/poker,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccH" = (/obj/structure/table/wood/poker,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccI" = (/obj/item/toy/cards/deck,/obj/structure/table/wood/poker,/obj/machinery/camera{c_tag = "Dorms Central"},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccJ" = (/obj/machinery/vending/snack,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccK" = (/obj/machinery/vending/clothing,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccL" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Dorms Central"; dir = 2; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccM" = (/obj/machinery/vending/sustenance,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccN" = (/obj/machinery/vending/assist,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ccO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/crew_quarters/kitchen) +"ccP" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/crew_quarters/kitchen) +"ccQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/kitchen) +"ccR" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"ccS" = (/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"ccT" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"ccU" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"ccV" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"ccW" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/radio/headset{frequency = 1489; name = "Theater headset"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"ccX" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -5; pixel_y = 8},/obj/machinery/button/door{id = "curtains"; name = "Curtains Control"},/obj/machinery/button/flasher{pixel_y = -8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/theatre) +"ccY" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"ccZ" = (/obj/structure/piano,/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"cda" = (/obj/structure/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"cdb" = (/obj/machinery/camera{c_tag = "Theater Control"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/crew_quarters/theatre) +"cdc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-stairs-l"; icon_state = "stairs-l"},/area/crew_quarters/fitness) +"cdd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-stairs-r"; icon_state = "stairs-r"},/area/crew_quarters/fitness) +"cde" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) +"cdf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cdg" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cdh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cdi" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cdj" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) +"cdk" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel,/area/storage/testroom) +"cdl" = (/turf/simulated/floor/plasteel,/area/storage/testroom) +"cdm" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel,/area/storage/testroom) +"cdn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -24},/turf/simulated/floor/grass,/area/storage/testroom) +"cdo" = (/obj/machinery/camera{c_tag = "Terrarium South"; dir = 1; network = list("SS13")},/turf/simulated/floor/grass,/area/storage/testroom) +"cdp" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/storage/testroom) +"cdq" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cdr" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cds" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"},/area/shuttle/labor) +"cdt" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/space,/area/shuttle/labor) +"cdu" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"},/area/shuttle/labor) +"cdv" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/plasteel/black,/area/security/processing) +"cdw" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) +"cdx" = (/obj/machinery/computer/shuttle/labor,/turf/simulated/floor/plasteel/black,/area/security/processing) +"cdy" = (/turf/simulated/floor/plasteel{tag = "icon-whitered (WEST)"; icon_state = "whitered"; dir = 8},/area/security/processing) +"cdz" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/processing) +"cdA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/processing) +"cdB" = (/obj/machinery/atmospherics/components/unary/vent_pump,/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/prison) +"cdC" = (/turf/simulated/floor/plasteel{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/security/prison) +"cdD" = (/obj/machinery/door/window/brigdoor{dir = 8; id = "Cell 3"; name = "Cell 3"; req_access_txt = "2"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"cdE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"cdF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/security/brig) +"cdG" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/security/warden) +"cdH" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"cdI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"cdJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/main) +"cdK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/security/main) +"cdL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/main) +"cdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/main) +"cdN" = (/obj/machinery/power/apc{dir = 8; name = "Security Office APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plating,/area/security/main) +"cdO" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/security/main) +"cdP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/brig) +"cdQ" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) +"cdR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/atmos) +"cdS" = (/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plasteel,/area/atmos) +"cdT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/atmos) +"cdU" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/atmos) +"cdV" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) +"cdW" = (/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/atmos) +"cdX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "plasma vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cdY" = (/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cdZ" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cea" = (/obj/effect/decal/cleanable/oil/streak,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ceb" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"cec" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"ced" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cee" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cef" = (/obj/machinery/computer/arcade,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ceg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/locker) +"ceh" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cei" = (/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cej" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"cek" = (/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"cel" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"cem" = (/obj/structure/bed/chair/wood/normal{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/grimy,/area/crew_quarters/locker) +"cen" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) +"ceo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) +"cep" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"ceq" = (/obj/structure/disposalpipe/sortjunction{sortType = 18},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cer" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"ces" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cet" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/fitness) +"ceu" = (/obj/structure/table/glass,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/storage/testroom) +"cev" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/storage/testroom) +"cew" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2; pixel_y = 1},/obj/structure/table/glass,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/storage/testroom) +"cex" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/butterfly,/turf/simulated/floor/grass,/area/storage/testroom) +"cey" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cez" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"ceA" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/shuttle/labor) +"ceB" = (/obj/machinery/computer/shuttle/labor,/obj/structure/reagent_dispensers/peppertank{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) +"ceC" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) +"ceD" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) +"ceE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/processing) +"ceF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/processing) +"ceG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/security/processing) +"ceH" = (/obj/machinery/computer/security{name = "Labor Camp Monitoring"; network = list("Labor")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/processing) +"ceI" = (/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-whitered (SOUTHWEST)"; icon_state = "whitered"; dir = 10},/area/security/processing) +"ceJ" = (/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/processing) +"ceK" = (/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/processing) +"ceL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/processing) +"ceM" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitered"; icon_state = "whitered"},/area/security/prison) +"ceN" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{tag = "icon-whitered (SOUTHEAST)"; icon_state = "whitered"; dir = 6},/area/security/prison) +"ceO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/brig) +"ceP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/security/brig) +"ceQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/brig) +"ceR" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"ceS" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"ceT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel,/area/security/main) +"ceU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/security/main) +"ceV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/security/main) +"ceW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/main) +"ceX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/main) +"ceY" = (/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) +"ceZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; frequency = 1441; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "nitrogen vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) +"cfa" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) +"cfb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/atmos) +"cfc" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) +"cfd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 Outlet Pump"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"cfe" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/atmos) +"cff" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "tox_in"; name = "Toxin Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/atmos) +"cfg" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"; output = 11},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cfh" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cfi" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cfj" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/neutral,/area/atmos) +"cfk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) +"cfl" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/crew_quarters/locker) +"cfm" = (/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cfn" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cfo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cfp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cfq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cfr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cfs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cft" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/crew_quarters/locker) +"cfu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/locker) +"cfv" = (/obj/machinery/door/airlock{id_tag = "Cabin3"; name = "Cabin 3"},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"cfw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker) +"cfx" = (/obj/machinery/door/airlock{id_tag = "Cabin4"; name = "Cabin 4"},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"cfy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Fitness West"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) +"cfz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) +"cfA" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cfB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cfC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-redgreen"; icon_state = "redgreen"},/area/crew_quarters/fitness) +"cfD" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-redgreenfull"; icon_state = "redgreenfull"},/area/crew_quarters/fitness) +"cfE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/testroom) +"cfF" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/pipe_dispenser,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cfG" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cfH" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cfI" = (/obj/structure/grille,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cfJ" = (/obj/structure/grille,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/window/shuttle,/turf/space,/area/shuttle/labor) +"cfK" = (/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) +"cfL" = (/obj/machinery/mineral/labor_claim_console{machinedir = 2; pixel_x = 30; pixel_y = 30},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) +"cfM" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/space,/area/shuttle/labor) +"cfN" = (/obj/machinery/door/airlock/external{name = "Security Escape Airlock"; req_access_txt = "2"},/turf/simulated/floor/plating,/area/security/processing) +"cfO" = (/turf/simulated/floor/plating,/area/security/processing) +"cfP" = (/turf/simulated/floor/plasteel/black,/area/security/processing) +"cfQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) +"cfR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Insanity Ward"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/processing) +"cfS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/security/prison) +"cfT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/brig) +"cfU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/brig) +"cfV" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/brig) +"cfW" = (/turf/simulated/wall/r_wall,/area/security/warden) +"cfX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) +"cfY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) +"cfZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) +"cga" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_access = null; req_access_txt = "58"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/security/main) +"cgb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cgc" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cgd" = (/turf/simulated/wall/r_wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cge" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) +"cgf" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) +"cgg" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/atmos) +"cgh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/atmos) +"cgi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"cgj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/atmos) +"cgk" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"cgl" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"cgm" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/atmos) +"cgn" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) +"cgo" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel/neutral,/area/atmos) +"cgp" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"cgq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) +"cgr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dome"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) +"cgs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) +"cgt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cgu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cgv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cgw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) +"cgx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/locker) +"cgy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cgz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) +"cgA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/locker) +"cgB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Dorms Washroom Exteriror"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cgC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cgD" = (/obj/effect/decal/cleanable/oil/streak,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cgE" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cgF" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cgG" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cgH" = (/obj/structure/bed/stool,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cgI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) +"cgJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) +"cgK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cgL" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cgM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cgN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cgO" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cgP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-redgreen (WEST)"; icon_state = "redgreen"; dir = 8},/area/crew_quarters/fitness) +"cgQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cgR" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cgS" = (/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cgT" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cgU" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cgV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cgW" = (/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cgX" = (/obj/structure/rack,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cgY" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt{desc = "Can hold quite a lot of stuff."; name = "mutli-belt"},/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cgZ" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cha" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/shuttle/labor) +"chb" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/labor) +"chc" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/shuttle/labor) +"chd" = (/obj/machinery/mineral/stacking_machine/laborstacker{input_dir = 2; output_dir = 1},/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/shuttle/labor) +"che" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"},/area/shuttle/labor) +"chf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Gulag Shuttle Dock"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/security/processing) +"chg" = (/obj/machinery/power/apc{dir = 2; name = "Labor Shuttle Dock APC"; pixel_y = -24},/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/security/processing) +"chh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{id_tag = "laborexit"; name = "Labor Shuttle"; req_access = null; req_access_txt = "63"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/processing) +"chi" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/processing) +"chj" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chk" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chl" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Prisoner Transfer"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chm" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chn" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"cho" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chp" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chq" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chr" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"chs" = (/obj/structure/rack,/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1; pixel_y = -1},/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/machinery/power/apc{dir = 4; name = "Prison Wing APC"; pixel_x = 24},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light_switch{pixel_x = 23; pixel_y = -10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/processing) +"cht" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/prison) +"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/prison) +"chv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/prison) +"chw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/prison) +"chx" = (/turf/simulated/wall/r_wall,/area/ai_monitored/security/armory) +"chy" = (/obj/machinery/deployable/barrier,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) +"chz" = (/obj/machinery/deployable/barrier,/obj/machinery/alarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"chA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"chB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) +"chC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/hos) +"chD" = (/obj/structure/bed/chair,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) +"chE" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) +"chF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) +"chG" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/wood,/area/security/hos) +"chH" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/turf/simulated/floor/wood,/area/security/hos) +"chI" = (/turf/simulated/wall/r_wall,/area/security/hos) +"chJ" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) +"chK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "n2_in"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) +"chL" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) +"chM" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/atmos) +"chN" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 2; filter_type = 2; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"chO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel,/area/atmos) +"chP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"chQ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"chR" = (/obj/machinery/atmospherics/pipe/manifold4w/general/hidden,/turf/simulated/floor/plasteel,/area/atmos) +"chS" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) +"chT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"chU" = (/obj/structure/closet/crate,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"chV" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"chW" = (/obj/structure/bed/stool{pixel_y = 8},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"chX" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/clothing/mask/balaclava{pixel_x = -8; pixel_y = 8},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"chY" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"chZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) +"cia" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) +"cib" = (/obj/structure/table,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cic" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) +"cid" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cie" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cif" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/locker) +"cig" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) +"cih" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) +"cii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/fitness) +"cij" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cik" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cil" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) +"cim" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cin" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cio" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cip" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"ciq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cir" = (/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cis" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) +"cit" = (/obj/machinery/mineral/labor_claim_console{machinedir = 1; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) +"ciu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/processing) +"civ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/processing) +"ciw" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) +"cix" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/processing) +"ciy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) +"ciz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/black,/area/security/processing) +"ciA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) +"ciB" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/processing) +"ciC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) +"ciD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/prison) +"ciE" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/security/prison) +"ciF" = (/obj/machinery/camera{c_tag = "Brig South"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/prison) +"ciG" = (/obj/machinery/deployable/barrier,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/camera{c_tag = "Security - Secure Gear Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) +"ciH" = (/obj/machinery/deployable/barrier,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"ciI" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"ciJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) +"ciK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/hos) +"ciL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = -23; pixel_y = -23},/turf/simulated/floor/wood,/area/security/hos) +"ciM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/hos) +"ciN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood,/area/security/hos) +"ciO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/security/hos) +"ciP" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/wood,/area/security/hos) +"ciQ" = (/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ciR" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ciS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) +"ciT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) +"ciU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) +"ciV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/atmos) +"ciW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "carbon dioxide vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) +"ciX" = (/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) +"ciY" = (/turf/simulated/wall/r_wall,/area/crew_quarters/locker) +"ciZ" = (/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) +"cja" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) +"cjb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) +"cjc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"cjd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) +"cjf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/fitness) +"cjg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/crew_quarters/fitness) +"cjh" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cji" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"cjj" = (/obj/structure/table,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cjk" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cjl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cjm" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cjn" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cjo" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) +"cjp" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/flasher{id = "gulagshuttleflasher"; pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) +"cjq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/processing) +"cjr" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/processing) +"cjs" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/processing) +"cjt" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) +"cju" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/prison) +"cjv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/security/prison) +"cjw" = (/turf/simulated/floor/plasteel/black,/area/security/prison) +"cjx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cjy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cjz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/prison) +"cjA" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/security/prison) +"cjB" = (/obj/machinery/power/apc{cell_type = 10000; dir = 2; name = "Brig APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/red/side,/area/security/prison) +"cjC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/prison) +"cjD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage"; req_access_txt = "3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/security/armory) +"cjE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cjF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cjG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cjH" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) +"cjI" = (/obj/machinery/computer/prisoner,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/security/hos) +"cjJ" = (/obj/machinery/computer/security,/turf/simulated/floor/carpet,/area/security/hos) +"cjK" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 0},/obj/item/device/radio/off{pixel_x = 0; pixel_y = 3},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/security/hos) +"cjL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/wood,/area/security/hos) +"cjM" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 29},/obj/machinery/suit_storage_unit/hos,/turf/simulated/floor/wood,/area/security/hos) +"cjN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cjO" = (/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) +"cjP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; frequency = 1441; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; name = "oxygen vent"; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) +"cjQ" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/atmos) +"cjR" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "O2 Outlet Pump"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"cjS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cjT" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cjU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel,/area/atmos) +"cjV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Port to Distro"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"cjW" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cjX" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/atmos) +"cjY" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"; output = 35},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) +"cjZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) +"cka" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) +"ckb" = (/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/aft) +"ckc" = (/turf/simulated/wall/r_wall,/area/storage/tech) +"ckd" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/storage/tech) +"cke" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) +"ckf" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = 26},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "Tech Storage"},/turf/simulated/floor/plating,/area/storage/tech) +"ckg" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/power/apc{dir = 1; name = "Tech Storage APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/storage/tech) +"ckh" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/storage/tech) +"cki" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/tech) +"ckj" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"ckk" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/wood,/area/crew_quarters/locker) +"ckl" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"ckm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker) +"ckn" = (/obj/effect/decal/cleanable/oil/streak,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cko" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) +"ckp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) +"ckq" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ckr" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"cks" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"ckt" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"cku" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"ckv" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"ckw" = (/obj/machinery/light_switch{pixel_x = 23; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"ckx" = (/obj/machinery/door/airlock{id_tag = "Toilet3"; name = "Unit 3"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"cky" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"ckz" = (/obj/structure/bedsheetbin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ckA" = (/obj/machinery/camera{c_tag = "Dorms East"; dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ckB" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ckC" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ckD" = (/obj/structure/closet/crate/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"ckE" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "Store"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"ckF" = (/obj/structure/table,/obj/machinery/door/poddoor/shutters/preopen{id = "Store"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"ckG" = (/obj/structure/windoor_assembly,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "Store"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"ckH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/device/radio/intercom{pixel_x = -30},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"ckI" = (/turf/simulated/floor/plasteel{tag = "icon-redblue (EAST)"; icon_state = "redblue"; dir = 4},/area/crew_quarters/fitness) +"ckJ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"ckK" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"ckL" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"ckM" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) +"ckN" = (/obj/machinery/door/airlock/shuttle{id_tag = "prisonshuttle"; name = "Labor Shuttle Airlock"},/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 5; id = "laborcamp"; name = "labor camp shuttle"; travelDir = 90; width = 9},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; width = 9},/turf/space,/area/shuttle/labor) +"ckO" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/processing) +"ckP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/processing) +"ckQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/darkred/corner,/area/security/processing) +"ckR" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/darkred/side,/area/security/processing) +"ckS" = (/obj/machinery/power/apc{cell_type = 10000; dir = 2; name = "Brig APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkred/side,/area/security/processing) +"ckT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) +"ckU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) +"ckV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) +"ckW" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) +"ckX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) +"ckY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) +"ckZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/prison) +"cla" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/ai_monitored/security/armory) +"clb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_access = null; req_access_txt = "3"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/security/armory) +"clc" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/simulated/floor/carpet,/area/security/hos) +"cld" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor/carpet,/area/security/hos) +"cle" = (/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in."; pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/security/hos) +"clf" = (/turf/simulated/floor/wood,/area/security/hos) +"clg" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{pixel_x = -2},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/cartridge/detective,/turf/simulated/floor/wood,/area/security/hos) +"clh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cli" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) +"clj" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) +"clk" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 8},/area/atmos) +"cll" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/atmos) +"clm" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cln" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = 3; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"clo" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/atmos) +"clp" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "co2_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) +"clq" = (/turf/simulated/wall/r_wall,/area/hallway/primary/aft) +"clr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/hallway/primary/aft) +"cls" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"clt" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"clu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/aft) +"clv" = (/obj/machinery/door/airlock/highsecurity{name = "Tech Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/storage/tech) +"clw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) +"clx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) +"cly" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/storage/tech) +"clz" = (/turf/simulated/floor/plating,/area/storage/tech) +"clA" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"clB" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) +"clC" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/storage/tech) +"clD" = (/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"clE" = (/turf/simulated/floor/wood,/area/crew_quarters/locker) +"clF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"clG" = (/obj/machinery/door/airlock{id_tag = "Cabin1"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"clH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"clI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) +"clJ" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"clK" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"clL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"clM" = (/obj/machinery/power/apc{dir = 4; name = "Locker Restrooms APC"; pixel_x = 27; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"clN" = (/obj/machinery/door/airlock{id_tag = "Cabin5"; name = "Cabin 5"},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"clO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/locker) +"clP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/locker) +"clQ" = (/obj/machinery/door/airlock{id_tag = "Cabin6"; name = "Cabin 6"},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"clR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"clS" = (/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"clT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"clU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"clV" = (/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/fitness) +"clW" = (/turf/simulated/floor/plasteel{tag = "icon-redblue (NORTH)"; icon_state = "redblue"; dir = 1},/area/crew_quarters/fitness) +"clX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"clY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"clZ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cma" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cmb" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) +"cmc" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/processing) +"cmd" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/processing) +"cme" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/processing) +"cmf" = (/turf/simulated/wall,/area/security/prison) +"cmg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/prison) +"cmh" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3"; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cmi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/security/prison) +"cmj" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cmk" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cml" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/projectile/automatic/pistol = 5, /obj/item/weapon/gun/projectile/revolver/mateba, /obj/item/weapon/gun/projectile/automatic/pistol/deagle, /obj/item/weapon/storage/box/throwing_stars = 3)},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cmm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cmn" = (/obj/machinery/light_switch{pixel_y = 23},/obj/machinery/camera/motion{c_tag = "Armory"; dir = 2; network = list("MiniSat")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cmo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cmp" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 29},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/security/armory) +"cmq" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/hos) +"cmr" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = -32},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 10},/obj/machinery/power/apc{dir = 8; name = "Head of Security's Office APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/carpet,/area/security/hos) +"cms" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet,/area/security/hos) +"cmt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/camera{c_tag = "Head of Security"; dir = 1},/turf/simulated/floor/carpet,/area/security/hos) +"cmu" = (/obj/structure/table/wood,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/computer/med_data/laptop,/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 36; pixel_y = 28},/obj/item/device/radio/intercom{pixel_y = -30},/turf/simulated/floor/wood,/area/security/hos) +"cmv" = (/obj/structure/rack,/obj/item/clothing/tie/stethoscope,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cmw" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) +"cmx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "o2_in"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) +"cmy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 10},/area/atmos) +"cmz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cmA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) +"cmB" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cmC" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) +"cmD" = (/obj/machinery/light{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/plasteel,/area/atmos) +"cmE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "caution"},/area/hallway/primary/aft) +"cmF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/hallway/primary/aft) +"cmG" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/hallway/primary/aft) +"cmH" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/aft) +"cmI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"cmJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/aft) +"cmK" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/med_data{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/clonescanner,/obj/item/weapon/circuitboard/clonepod,/obj/item/weapon/circuitboard/scan_consolenew,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) +"cmL" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/security{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plating,/area/storage/tech) +"cmM" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/stationalert{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) +"cmN" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plating,/area/storage/tech) +"cmO" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) +"cmP" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"cmQ" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"cmR" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"cmS" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"cmT" = (/obj/machinery/door/airlock{id_tag = "Toilet2"; name = "Unit 2"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"cmU" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"cmV" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"cmW" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"cmX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"cmY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"cmZ" = (/obj/item/stack/sheet/cardboard,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cna" = (/obj/structure/closet/lasertag/blue,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cnb" = (/obj/structure/closet/lasertag/red,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cnc" = (/obj/structure/closet/boxinggloves,/obj/machinery/light{dir = 2},/obj/item/clothing/shoes/jackboots,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cnd" = (/obj/machinery/camera{c_tag = "Fitness Room"; dir = 1},/obj/structure/closet/masks,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cne" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cnf" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cng" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cnh" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cni" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cnj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cnk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cnl" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/apmaint) +"cnm" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"},/area/shuttle/labor) +"cnn" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/labor) +"cno" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"},/area/shuttle/labor) +"cnp" = (/turf/simulated/wall/r_wall,/area/security/transfer) +"cnq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; id_tag = "prisonereducation"; name = "Prisoner Education Chamber"; req_access = null; req_access_txt = "3"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/transfer) +"cnr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/security/transfer) +"cns" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 3"; network = list("SS13","Prison")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnt" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnu" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnv" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("SS13","Prison")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnx" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/security/prison) +"cny" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1"; network = list("SS13","Prison")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnA" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cnB" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/structure/closet/ammunitionlocker,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cnC" = (/obj/machinery/bot/secbot{health = 35; name = "Officer Bopsky"; on = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cnD" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cnE" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) +"cnF" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel{tag = "icon-darkredfull"; icon_state = "darkredfull"},/area/atmos) +"cnG" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) +"cnH" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) +"cnI" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/atmos) +"cnJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) +"cnK" = (/obj/machinery/space_heater,/turf/simulated/floor/plasteel,/area/atmos) +"cnL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/hallway/primary/aft) +"cnM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"cnN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"cnO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"cnP" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Aft Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/aft) +"cnQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/storage/tech) +"cnR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) +"cnS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) +"cnT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating,/area/storage/tech) +"cnU" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/storage/tech) +"cnV" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/mecha_control{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/storage/tech) +"cnW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cnX" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/crew_quarters/locker) +"cnY" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{dir = 8; pixel_x = 28; pixel_y = 0},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/wood,/area/crew_quarters/locker) +"cnZ" = (/obj/structure/table,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"coa" = (/obj/structure/table,/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"cob" = (/obj/structure/closet,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"coc" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/black,/area/crew_quarters/locker) +"cod" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/fitness) +"coe" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cof" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cog" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"coh" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/corner,/area/security/transfer) +"coi" = (/obj/structure/closet/secure_closet/injection{name = "educational injections"; pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/transfer) +"coj" = (/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/security/prison) +"cok" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"col" = (/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"com" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"con" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"coo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cop" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"coq" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/item/weapon/storage/lockbox/loyalty,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cor" = (/obj/structure/closet/crate,/obj/item/weapon/storage/belt/utility,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cos" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/atmos) +"cot" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmost South West"; dir = 1; network = list("SS13")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plasteel,/area/atmos) +"cou" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel{tag = "icon-darkredfull"; icon_state = "darkredfull"},/area/atmos) +"cov" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/atmos) +"cow" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/simulated/floor/plasteel,/area/atmos) +"cox" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel,/area/atmos) +"coy" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel,/area/atmos) +"coz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"coA" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluefull"; icon_state = "darkbluefull"},/area/atmos) +"coB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/atmos) +"coC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Space"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"coD" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) +"coE" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1443; id = "air_in"},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) +"coF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/hallway/primary/aft) +"coG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/hallway/primary/aft) +"coH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/hallway/primary/aft) +"coI" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/hallway/primary/aft) +"coJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/hallway/primary/aft) +"coK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/storage/tech) +"coL" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/pandemic{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/rdserver{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe,/obj/item/weapon/circuitboard/aifixer,/obj/item/weapon/circuitboard/teleporter,/turf/simulated/floor/plating,/area/storage/tech) +"coM" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/mining,/obj/item/weapon/circuitboard/autolathe{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/arcade/battle,/turf/simulated/floor/plating,/area/storage/tech) +"coN" = (/obj/structure/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/message_monitor{pixel_y = -5},/turf/simulated/floor/plating,/area/storage/tech) +"coO" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) +"coP" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/storage/tech) +"coQ" = (/obj/machinery/door/airlock{id_tag = "Cabin2"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/locker) +"coR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/crew_quarters/locker) +"coS" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Dorms Central South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/crew_quarters/locker) +"coT" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"coU" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"coV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"coW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/locker/locker_toilet) +"coX" = (/obj/machinery/door/airlock{id_tag = "Toilet1"; name = "Unit 1"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"coY" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"coZ" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpa" = (/obj/item/weapon/vending_refill/cigarette,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpb" = (/obj/item/weapon/vending_refill/cola,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpc" = (/obj/item/weapon/vending_refill/snack,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpd" = (/obj/machinery/power/apc{dir = 1; name = "Fitness APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"cpe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpf" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpg" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cph" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpi" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cpj" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cpk" = (/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cpl" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/security/transfer) +"cpm" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/security/transfer) +"cpn" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/security/transfer) +"cpo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/security/transfer) +"cpp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) +"cpq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc{dir = 4; name = "Justice APC"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/transfer) +"cpr" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell3"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cps" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell2"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cpt" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell1"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cpu" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cpv" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cpw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cpx" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/teargas,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cpy" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cpz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cpA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/atmos) +"cpB" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cpC" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/atmos) +"cpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/atmos) +"cpE" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"cpF" = (/turf/simulated/wall/r_wall,/area/engine/break_room) +"cpG" = (/obj/machinery/door/airlock/glass{name = "Engineering Corridor"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/engine/break_room) +"cpH" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/engine/engineering) +"cpI" = (/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cpJ" = (/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,/area/engine/engineering) +"cpK" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/engineering) +"cpL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/crew_quarters/locker) +"cpM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/locker) +"cpN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/crew_quarters/locker) +"cpO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/locker) +"cpP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) +"cpQ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpT" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpV" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cpZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cqa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cqb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cqc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cqd" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cqe" = (/obj/item/weapon/stock_parts/cell,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cqf" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/security/transfer) +"cqg" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/turf/simulated/floor/plating,/area/security/transfer) +"cqh" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "executionburn"; luminosity = 2; on = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/security/transfer) +"cqi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) +"cqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/transfer) +"cqk" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/transfer) +"cql" = (/turf/simulated/floor/plasteel,/area/security/prison) +"cqm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/prison) +"cqn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/security/prison) +"cqo" = (/obj/machinery/light_switch{pixel_y = 23},/turf/simulated/floor/plasteel,/area/security/prison) +"cqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/prison) +"cqq" = (/obj/machinery/light/small{dir = 4},/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) +"cqr" = (/obj/structure/rack,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cqs" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cqt" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Armory APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"cqu" = (/obj/machinery/alarm{dir = 1; pixel_y = -28},/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle,/obj/item/clothing/suit/armor/laserproof,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cqv" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) +"cqw" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqx" = (/obj/structure/table,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqB" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqC" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqD" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqE" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cqF" = (/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHWEST)"; icon_state = "blueyellow"; dir = 9},/area/engine/break_room) +"cqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqJ" = (/obj/machinery/vending/cigarette{pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqK" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Canister Storage"},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair,/obj/machinery/alarm{dir = 2; icon_state = "alarm0"; pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/table,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTH)"; icon_state = "blueyellow"; dir = 1},/area/engine/break_room) +"cqQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (NORTHEAST)"; icon_state = "blueyellow"; dir = 5},/area/engine/break_room) +"cqR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 15000; dir = 1; name = "Engineering APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Engineering Cutthrough"; dir = 2; network = list("MINE")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cqZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"cra" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/break_room) +"crb" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/engine/break_room) +"crc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/radiation,/turf/simulated/floor/plasteel,/area/engine/engineering) +"crd" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cre" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"crf" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security Post RC"; pixel_x = -32; pixel_y = 0},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/security/checkpoint/engineering) +"crg" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/security/checkpoint/engineering) +"crh" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/security/checkpoint/engineering) +"cri" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/components/binary/valve/open,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crm" = (/obj/machinery/power/apc{dir = 1; name = "Dormitory APC"; pixel_y = 24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/components/binary/valve/open,/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 4},/turf/simulated/floor/plating,/area/crew_quarters/locker) +"crn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cro" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crr" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crt" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cru" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cry" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"crB" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"crC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/starboardsolar) +"crD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"crF" = (/obj/machinery/cell_charger,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"crG" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/security/transfer) +"crH" = (/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/security/transfer) +"crI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "n2_in"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/security/transfer) +"crJ" = (/obj/machinery/door/window/brigdoor{dir = 8; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/window/brigdoor{dir = 4; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/security/transfer) +"crK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) +"crL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred,/area/security/transfer) +"crM" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5; pixel_y = 1},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle"; pixel_x = -3; pixel_y = 6},/obj/item/weapon/reagent_containers/syringe{pixel_y = 5},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/transfer) +"crN" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/prison) +"crO" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) +"crP" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"crQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) +"crR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"crS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"crT" = (/obj/machinery/door/airlock{name = "Unisex Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) +"crU" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/item/weapon/soap,/turf/simulated/floor/plasteel/freezer,/area/security/prison) +"crV" = (/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"crW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"crX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"crY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"crZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csb" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csc" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csd" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cse" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csf" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csg" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"csh" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (WEST)"; icon_state = "blueyellow"; dir = 8},/area/engine/break_room) +"csi" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csj" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csk" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csl" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csm" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csn" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 6},/turf/simulated/floor/plasteel,/area/engine/break_room) +"cso" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csp" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csq" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csr" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 5},/turf/simulated/floor/plasteel,/area/engine/break_room) +"css" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/break_room) +"cst" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/break_room) +"csu" = (/turf/simulated/floor/plasteel,/area/engine/break_room) +"csv" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/break_room) +"csw" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"csx" = (/turf/simulated/floor/plasteel,/area/engine/engineering) +"csy" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) +"csz" = (/turf/simulated/floor/plasteel/red/side{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/security/checkpoint/engineering) +"csA" = (/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) +"csB" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) +"csC" = (/obj/machinery/camera{c_tag = "Security Post - Engineering"; dir = 8; network = list("SS13")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/security/checkpoint/engineering) +"csD" = (/turf/simulated/wall/r_wall,/area/engine/engineering) +"csE" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engine/engineering) +"csF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/wall/r_wall,/area/engine/engineering) +"csG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) +"csH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/engine/engineering) +"csI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csK" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csL" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csO" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8; initialize_directions = 6},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csQ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csT" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csU" = (/obj/structure/table,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csV" = (/obj/structure/bed/stool{pixel_y = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"csW" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -26; pixel_y = 3},/obj/machinery/camera{c_tag = "Aft Starboard Solar Control"; dir = 4; network = list("SS13")},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"csX" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"csY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"csZ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cta" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"ctb" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/space,/area/solar/starboard) +"ctc" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/starboard) +"ctd" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cte" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"ctf" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"ctg" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cth" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_4) +"cti" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_4) +"ctj" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_4) +"ctk" = (/obj/item/stack/sheet/metal{amount = 50; pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"ctl" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"ctm" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"ctn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cto" = (/obj/machinery/button/door{id = "SecJusticeChamber"; name = "Justice Vents"; pixel_x = -26; pixel_y = -8},/obj/machinery/button/door{id = "executionfireblast"; name = "Blast Doors"; pixel_x = -26; pixel_y = 8},/obj/machinery/atmospherics/components/binary/volume_pump{tag = "icon-volpump_map (NORTH)"; icon_state = "volpump_map"; dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) +"ctp" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/structure/reagent_dispensers/peppertank{pixel_x = 29; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/transfer) +"ctq" = (/obj/machinery/camera{c_tag = "Perma West"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/security/prison) +"ctr" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cts" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/prison) +"ctt" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/plasteel,/area/security/prison) +"ctu" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/prison) +"ctv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/prison) +"ctw" = (/obj/machinery/computer/arcade,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"ctx" = (/obj/item/device/radio,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cty" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctB" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctC" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctD" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctF" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"ctH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-blueyellow (SOUTHWEST)"; icon_state = "blueyellow"; dir = 10},/area/engine/break_room) +"ctI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/engine/break_room) +"ctJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/engine/break_room) +"ctK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/break_room) +"ctL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/break_room) +"ctM" = (/turf/simulated/floor/plasteel{tag = "icon-blueyellow"; icon_state = "blueyellow"},/area/engine/break_room) +"ctN" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctO" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctT" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctU" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) +"ctV" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/break_room) +"ctW" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) +"ctX" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) +"ctY" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) +"ctZ" = (/obj/structure/closet,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/security/checkpoint/engineering) +"cua" = (/turf/simulated/floor/plasteel/red/side,/area/security/checkpoint/engineering) +"cub" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/item/device/radio/off,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel/red/side,/area/security/checkpoint/engineering) +"cuc" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel/red/side,/area/security/checkpoint/engineering) +"cud" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 27; pixel_y = -7},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/security/checkpoint/engineering) +"cue" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cuf" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cug" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cuh" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cui" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cuj" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/structure/table,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cuk" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/engine/engineering) +"cum" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cun" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cuo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cup" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cuq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5; initialize_directions = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cur" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cus" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cut" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cuu" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cuv" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cuw" = (/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cux" = (/obj/machinery/power/solar_control{id = "aftstarboard"; name = "Aft Starboard Solar Control"; track = 0},/obj/structure/cable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cuy" = (/turf/simulated/wall,/area/maintenance/starboardsolar) +"cuz" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cuA" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod4"; name = "escape pod 4"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) +"cuB" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) +"cuC" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) +"cuD" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_4) +"cuE" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cuF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cuG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cuH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cuI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cuJ" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cuK" = (/obj/machinery/power/apc{dir = 2; name = "Prisoner Transfer Centre"; pixel_x = 0; pixel_y = -27},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/transfer) +"cuL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/transfer) +"cuM" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/structure/table,/obj/item/device/electropack,/obj/item/device/assembly/signaler{pixel_x = -3; pixel_y = 2},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/transfer) +"cuN" = (/turf/simulated/floor/plasteel/green/side,/area/security/prison) +"cuO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/green/side,/area/security/prison) +"cuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/security/prison) +"cuQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/green/corner{tag = "icon-greencorner (WEST)"; icon_state = "greencorner"; dir = 8},/area/security/prison) +"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cuS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) +"cuT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/security/prison) +"cuU" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cuV" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cuW" = (/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cuX" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cuY" = (/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cuZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/engineering) +"cva" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/engineering) +"cvb" = (/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_wall,/area/engine/engineering) +"cvc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/engineering) +"cvd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) +"cve" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cvf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cvg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cvh" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cvi" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cvj" = (/turf/simulated/wall/r_wall,/area/engine/engine_smes) +"cvk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/engine/engine_smes) +"cvl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engine_smes) +"cvm" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cvn" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cvo" = (/obj/structure/table,/obj/item/weapon/circuitboard/vendor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cvp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cvq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cvs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cvt" = (/obj/machinery/camera{c_tag = "Aft Starboard Solar"; dir = 2; network = list("SS13")},/turf/space,/area/space) +"cvu" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_4) +"cvv" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_4) +"cvw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cvx" = (/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/prison) +"cvy" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plasteel/black,/area/security/prison) +"cvz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/security/prison) +"cvA" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/security/prison) +"cvB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cvC" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/item/clothing/head/chefhat,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cvD" = (/obj/structure/closet,/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvE" = (/obj/structure/closet/crate,/obj/item/device/assembly/infra,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvH" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvI" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvJ" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cvK" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/break_room) +"cvL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/break_room) +"cvM" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/break_room) +"cvN" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engine/engineering) +"cvO" = (/obj/machinery/field/generator,/turf/simulated/floor/plating,/area/engine/engineering) +"cvP" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engine/engineering) +"cvQ" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/turf/simulated/floor/plating,/area/engine/engineering) +"cvR" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "caution"},/area/engine/engineering) +"cvS" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvT" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvU" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvV" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Central Left"; dir = 2; network = list("SS13")},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvW" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvX" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvY" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cvZ" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cwa" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cwb" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/vending/engineering,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cwc" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Central Right"; dir = 2; network = list("SS13")},/obj/machinery/vending/engivend,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cwd" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/vending/tool,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cwe" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/engine/engineering) +"cwf" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwl" = (/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/engine/engine_smes) +"cwm" = (/obj/machinery/light{dir = 1},/obj/structure/cable/orange{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) +"cwn" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) +"cwo" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) +"cwp" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engine_smes) +"cwq" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/engine/engine_smes) +"cwr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cws" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cwt" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cwu" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs/cable/white,/obj/item/weapon/gun/syringe,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cwv" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosiavulgarisseed,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cww" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cwx" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/security/prison) +"cwy" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 2; pixel_y = 1},/obj/machinery/alarm{dir = 8; pixel_x = 23; pixel_y = 0},/obj/machinery/camera{c_tag = "Perma East"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cwz" = (/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood/gibs/limb,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwC" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwD" = (/obj/machinery/door/airlock/hatch,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwF" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwG" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cwH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel/darkwarning,/area/engine/break_room) +"cwI" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/darkwarning,/area/engine/break_room) +"cwJ" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel/darkwarning,/area/engine/break_room) +"cwK" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/simulated/floor/plating,/area/engine/engineering) +"cwL" = (/turf/simulated/floor/plating,/area/engine/engineering) +"cwM" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/engine/engineering) +"cwN" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"cwO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwT" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"cwU" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwV" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwW" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/clothing/gloves/color/yellow,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwY" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/paper/solar,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cwZ" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxa" = (/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxb" = (/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxc" = (/obj/machinery/camera{c_tag = "SMES Room West"; dir = 4; network = list("SS13")},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/engine/engine_smes) +"cxd" = (/obj/machinery/power/smes/engineering,/obj/structure/cable/orange,/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) +"cxe" = (/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) +"cxf" = (/obj/machinery/camera{c_tag = "SMES Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/engine_smes) +"cxg" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/apmaint) +"cxh" = (/obj/structure/closet/crate,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil/random,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cxi" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) +"cxj" = (/obj/machinery/hydroponics/constructable,/obj/item/weapon/cultivator,/obj/item/seeds/carrotseed,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cxk" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cxl" = (/obj/machinery/hydroponics/constructable,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/plasteel/black,/area/security/prison) +"cxm" = (/obj/machinery/biogenerator,/obj/machinery/camera{c_tag = "Prison Hydroponics"; dir = 1; network = list("SS13","Prison")},/turf/simulated/floor/plasteel,/area/security/prison) +"cxn" = (/obj/machinery/vending/sustenance{desc = "A vending machine normally reserved for work camps."; name = "\improper sustenance vendor"; product_slogans = "Enjoy your meal.;Enough calories to support any worker."},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cxo" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cxp" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cxq" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"cxr" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cxs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cxt" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/power/apc{dir = 8; name = "Aft Port Solar APC"; pixel_x = -26; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cxu" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cxv" = (/obj/structure/table,/obj/item/weapon/paper,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cxw" = (/obj/structure/table,/obj/item/weapon/newspaper,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cxx" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cxy" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Engineering Secure Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/engine/engineering) +"cxz" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/simulated/floor/plating,/area/engine/engineering) +"cxA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxC" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/engine/engineering) +"cxD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cxE" = (/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cxF" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/engine/engineering) +"cxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxH" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"cxI" = (/turf/simulated/wall,/area/engine/engineering) +"cxJ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) +"cxK" = (/obj/structure/grille,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) +"cxL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage"; req_access_txt = "11"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cxM" = (/obj/structure/grille,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) +"cxN" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/engineering) +"cxO" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/engine/engine_smes) +"cxP" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/darkwarning,/area/engine/engine_smes) +"cxQ" = (/turf/simulated/floor/plasteel/darkwarning,/area/engine/engine_smes) +"cxR" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/engine/engine_smes) +"cxS" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cxT" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) +"cxU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/maintenance/apmaint) +"cxV" = (/obj/structure/rack,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cxW" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cxX" = (/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 4; pixel_y = 2},/obj/structure/table,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/reagentgrinder{pixel_y = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cxY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/prison) +"cxZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cya" = (/obj/structure/barricade/wooden,/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyd" = (/obj/structure/rack,/obj/item/weapon/wirecutters,/obj/item/device/multitool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cye" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cyf" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyg" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Aft Maintenance APC"; pixel_y = -24},/obj/structure/cable{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyh" = (/obj/structure/table,/obj/item/weapon/lighter,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyi" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyj" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/head/welding,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyk" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cyl" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cym" = (/turf/simulated/wall/r_wall,/area/crew_quarters/chief) +"cyn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/crew_quarters/chief) +"cyo" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"cyp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cyq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cyr" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cys" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cyt" = (/obj/structure/closet/radiation,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"cyu" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/engine/engineering) +"cyv" = (/obj/structure/closet/radiation,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"cyw" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cyx" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/item/weapon/airlock_painter,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cyy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"cyz" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/engine/engineering) +"cyA" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cyB" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cyC" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cyD" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 15000; dir = 1; name = "Engineering APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cyE" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/engine/engineering) +"cyF" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/engine/engineering) +"cyG" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engine_smes) +"cyH" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyL" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyP" = (/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cyQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cyR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cyS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cyT" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cyU" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cyV" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cyW" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cyX" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cyY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cyZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cza" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/maintenance/apmaint) +"czb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czd" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cze" = (/obj/effect/decal/cleanable/blood/gibs/limb,/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czf" = (/obj/machinery/chem_heater,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czh" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czj" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czk" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czl" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czm" = (/obj/structure/table,/obj/item/weapon/screwdriver,/obj/item/robot_parts/l_arm{pixel_x = -7; pixel_y = 3},/obj/item/robot_parts/chest,/obj/item/robot_parts/head{pixel_y = 10},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czn" = (/obj/machinery/suit_storage_unit/ce,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/crew_quarters/chief) +"czo" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"czp" = (/obj/machinery/light{dir = 1},/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"czq" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"czr" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"czs" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 27},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/button/door{id = "Secure Storage"; name = "Secure Storage"; pixel_x = 8; pixel_y = 23},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"czt" = (/obj/structure/grille,/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/crew_quarters/chief) +"czu" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"czv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"czw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) +"czx" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/turf/simulated/floor/plasteel,/area/engine/engineering) +"czy" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) +"czz" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"czA" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/engine/engineering) +"czB" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"czC" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/motion,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"czD" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/engine/engineering) +"czE" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"czF" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) +"czG" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_y = 6},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) +"czH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/engine/engineering) +"czI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"czJ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"czK" = (/obj/machinery/door/airlock/engineering{name = "SMES Room"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engine_smes) +"czL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"czM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"czN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"czO" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"czP" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"czQ" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"czR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"czS" = (/obj/structure/lattice,/obj/item/stack/cable_coil/random,/turf/space,/area/space) +"czT" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) +"czU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czW" = (/obj/structure/bed/stool,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"czX" = (/mob/living/simple_animal/hostile/carp{attacktext = "chomps"; butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/carpmeat = 5); desc = "A particularly ferocious, fang-bearing creature that resembles a fish."; emote_taunt = list("glares, gnashes"); environment_smash = 0; harm_intent_damage = 10; health = 100; maxHealth = 100; name = "Chompers"},/turf/space,/area/space) +"czY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"czZ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cAa" = (/obj/machinery/computer/atmos_alert,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAb" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAf" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/crew_quarters/chief) +"cAg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"cAh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cAi" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"cAj" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/engine/engineering) +"cAk" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) +"cAl" = (/obj/structure/particle_accelerator/end_cap,/turf/simulated/floor/plating,/area/engine/engineering) +"cAm" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (EAST)"; icon_state = "brownold"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/engine/engineering) +"cAn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/engine/engineering) +"cAo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/camera{c_tag = "Engineering East"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/engineering) +"cAp" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cAq" = (/obj/machinery/power/apc{dir = 2; name = "SMES room APC"; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cAr" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cAs" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/engine/engine_smes) +"cAt" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cAu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cAv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cAw" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"cAx" = (/obj/machinery/power/solar_control{id = "aftport"; name = "Aft Port Solar Control"; track = 0},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cAy" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cAz" = (/obj/machinery/power/smes,/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cAA" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) +"cAB" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cAC" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAD" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAE" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAG" = (/obj/structure/table/reinforced,/obj/item/stack/medical/bruise_pack{pixel_x = -3; pixel_y = 2},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cAH" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/chief) +"cAI" = (/obj/machinery/camera{c_tag = "Engineering West"; dir = 1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/engine/engineering) +"cAJ" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAK" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAL" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = -32},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAN" = (/obj/item/clothing/glasses/meson,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAO" = (/obj/structure/bed/stool,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/engineering) +"cAQ" = (/obj/machinery/particle_accelerator/control_box,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/engine/engineering) +"cAR" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/simulated/floor/plating,/area/engine/engineering) +"cAS" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plating,/area/engine/engineering) +"cAT" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/engine/engineering) +"cAU" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = -32},/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAX" = (/obj/structure/rack{dir = 8; layer = 2.9},/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/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAY" = (/obj/structure/closet/firecloset,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cAZ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/engine/engineering) +"cBa" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cBb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cBc" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/engine/engineering) +"cBd" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/engineering) +"cBe" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/space) +"cBf" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/airless,/area/space) +"cBg" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/space) +"cBh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cBi" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cBj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cBk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cBl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cBm" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cBn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBo" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBp" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBq" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBr" = (/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBs" = (/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBt" = (/obj/structure/window/reinforced,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cBu" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/maintenance/portsolar) +"cBv" = (/turf/space,/area/maintenance/portsolar) +"cBw" = (/turf/simulated/wall/r_wall,/area/maintenance/portsolar) +"cBx" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 4; network = list("SS13")},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/mob/living/simple_animal/parrot/Poly,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cBy" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cBz" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cBA" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/weapon/cartridge/atmos,/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "CE Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/crew_quarters/chief) +"cBB" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) +"cBC" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating,/area/engine/engineering) +"cBD" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/engine/engineering) +"cBE" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/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/crowbar,/turf/simulated/floor/plasteel{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) +"cBF" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/area/engine/engineering) +"cBG" = (/obj/structure/particle_accelerator/power_box,/turf/simulated/floor/plating,/area/engine/engineering) +"cBH" = (/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel{tag = "icon-brownold (EAST)"; icon_state = "brownold"; dir = 4},/area/engine/engineering) +"cBI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/engine/engineering) +"cBJ" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plasteel{dir = 10; icon_state = "caution"},/area/engine/engineering) +"cBK" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cBL" = (/obj/structure/rack{dir = 8; layer = 2.9},/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},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cBM" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering East"; dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cBN" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cBO" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/engineering) +"cBP" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/engine/engineering) +"cBQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cBR" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/simulated/floor/plating/airless,/area/space) +"cBS" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/space,/area/solar/starboard) +"cBT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cBU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cBV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cBW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cBX" = (/obj/structure/table,/obj/item/clothing/mask/cigarette/cigar,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cBY" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cBZ" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"cCa" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) +"cCb" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/crew_quarters/chief) +"cCc" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engine/engineering) +"cCd" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) +"cCe" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"cCf" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable/yellow,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"cCg" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/item/weapon/tank/internals/plasma,/obj/structure/cable/yellow,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"cCh" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHWEST)"; icon_state = "brownold"; dir = 10},/area/engine/engineering) +"cCi" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/simulated/floor/plasteel{tag = "icon-brownold"; icon_state = "brownold"},/area/engine/engineering) +"cCj" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHEAST)"; icon_state = "brownold"; dir = 6},/area/engine/engineering) +"cCk" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"cCl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/turf/simulated/floor/plating,/area/engine/engineering) +"cCm" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engine/engineering) +"cCn" = (/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCo" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCp" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/apmaint) +"cCr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) +"cCt" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCu" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCw" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cCx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cCy" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Port Maintenance"}) +"cCz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cCA" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHWEST)"; icon_state = "brownold"; dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/engine/engineering) +"cCB" = (/turf/simulated/floor/plasteel{tag = "icon-brownold"; icon_state = "brownold"},/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/engine/engineering) +"cCC" = (/turf/simulated/floor/plasteel{tag = "icon-brownold"; icon_state = "brownold"},/obj/item/weapon/wirecutters,/turf/simulated/floor/plasteel{tag = "icon-warningline"; icon_state = "warningline"},/area/engine/engineering) +"cCD" = (/turf/simulated/floor/plasteel{tag = "icon-brownold (SOUTHEAST)"; icon_state = "brownold"; dir = 6},/turf/simulated/floor/plasteel{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/engine/engineering) +"cCE" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCF" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCJ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCK" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cCL" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance{name = "Aux Robotics"},/turf/simulated/floor/plating,/area/maintenance/apmaint) +"cCM" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/port) +"cCN" = (/obj/structure/cable/yellow,/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cCO" = (/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cCP" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity North-West"; dir = 2; network = list("Singularity")},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cCQ" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity North East"; dir = 2; network = list("Singularity")},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cCR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cCU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cCV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cCW" = (/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) +"cCX" = (/obj/machinery/mecha_part_fabricator{dir = 2; id = "0"; name = "defunct fabricator"; req_access = "0"},/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) +"cCY" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cCZ" = (/obj/machinery/light/small{dir = 1},/obj/item/device/camera,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDb" = (/obj/machinery/power/apc{dir = 8; name = "Assembly APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDc" = (/obj/structure/rack,/obj/item/stack/sheet/cardboard,/obj/item/device/radio/off,/obj/machinery/light_construct{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDd" = (/obj/structure/rack,/obj/item/stack/rods{amount = 23},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) +"cDe" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) +"cDf" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDg" = (/obj/structure/bed/stool,/obj/item/clothing/mask/cigarette,/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cDh" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/asmaint{name = "Aft Starboard Maintenance"}) +"cDi" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cDj" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/starboard) +"cDk" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) +"cDl" = (/obj/item/stack/tile/plasteel,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/assembly/assembly_line) +"cDm" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/assembly/assembly_line) +"cDn" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/assembly/assembly_line) +"cDo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/assembly/assembly_line) +"cDp" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/assembly/assembly_line) +"cDq" = (/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDr" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/assembly/assembly_line) +"cDs" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/assembly/assembly_line) +"cDt" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDu" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDw" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDx" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cDA" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cDB" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDC" = (/turf/simulated/floor/mech_bay_recharge_floor{nitrogen = 0; oxygen = 0},/area/assembly/assembly_line) +"cDD" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/assembly/assembly_line) +"cDE" = (/obj/structure/lattice,/obj/item/stack/rods,/turf/space,/area/assembly/assembly_line) +"cDF" = (/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/assembly/assembly_line) +"cDG" = (/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel/airless,/area/assembly/assembly_line) +"cDH" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) +"cDI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cDJ" = (/obj/machinery/power/emitter{anchored = 1; dir = 4; state = 2},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cDK" = (/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/engine/engineering) +"cDL" = (/obj/machinery/field/generator{anchored = 1; state = 2},/turf/simulated/floor/plating/airless,/area/space) +"cDM" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/engine/engineering) +"cDN" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; state = 2},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cDO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"cDP" = (/turf/simulated/wall,/area/assembly/assembly_line) +"cDQ" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/assembly/assembly_line) +"cDR" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/assembly/assembly_line) +"cDS" = (/obj/item/stack/tile/plasteel,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDT" = (/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -1; pixel_y = -3},/obj/item/weapon/wrench,/obj/item/device/flashlight/seclite,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDU" = (/obj/structure/rack,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/hand_labeler,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/assembly/assembly_line) +"cDV" = (/obj/structure/closet,/obj/item/stack/sheet/metal{amount = 34},/obj/item/weapon/extinguisher/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDW" = (/obj/structure/closet,/obj/item/stack/sheet/glass{amount = 12},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/assembly/assembly_line) +"cDX" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cDY" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) +"cDZ" = (/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/space) +"cEa" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cEb" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating/airless,/area/assembly/assembly_line) +"cEc" = (/obj/machinery/the_singularitygen{anchored = 1},/turf/simulated/floor/plating/airless,/area/space) +"cEd" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cEe" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cEf" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/port) +"cEg" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) +"cEh" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_se"; name = "southeast of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) +"cEi" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_sw"; name = "southwest of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7006,191 +7003,191 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabxabwabwabwabwabwabxaeEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxahpahoalKahqamcalLalLabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxamxahoahoanoahoahoahoabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaogahoahoahoaoPahoapwabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIabxabxabxaquabxabxabxarYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxayBahoazyabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaAlahoaDlabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDNabxabxabxabxabxaAlahoaDlaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaEmahoahoaEVabxaAlahoaDlabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaEmahoaFeaFfabxaAlahoaDlabxabxaFgaFiaFhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaEmahoahoaFjabxahoahoahoabxahoahoahoabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaEmahoahoahoaFkahoahoahoaFuahoahoahoabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaEmahoahoahoaGhahoahoahoaHsahoahoaIYabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDNabxabxabxabxabxabxaKjahoahoabxabxabxabxabxabxaFhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaKTaKTaLEaKUaLHabxahoahoahoabxaNcaMiaNeaNdaNfabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxahoahoahoaFeahoaNEahoahoahoaOZahoaFeahoaFeaPQabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaaeaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaPRahoahoahoahoaRhahoahoahoaRiahoahoahoahoahoabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaPRahoahoaRvaTAabxaTUaTTaTUabxaVCaTZahoahoahoabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaahaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxahoahoaVTabxabxabxaVVaVUahoabxabxabxahoahoahoabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaeaaaaaiaaaaadaaeaaeaaeaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaVYaVXaVZabxaaaabxaXcaXcaXcabxaaaabxaYhaXdaYiabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaagaagaagaaaaaaaaiaagaagaaaaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxaXcaXcaXcabxaaaapIaYlaYkaYmarYaaaabxaXcaXcaXcabxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaajaajaajaajaagaakaagaajaajaajaajaaaaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapIaYlaYkaYmarYaaaaaaaaaaaaaaaaaaaaaapIaYlaYkaYmarYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaagaagaagaagaagaagaagaagaagaagaagaagaagaagaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaagaaaaalaamaamaamaanaaoaapaaqaaqaaqaaraaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaagaagaagaagaagaagaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaagaagaagaagaagaagaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaeaagaaaaasaasaasaasaagaaoaagaasaasaasaasaaaaagaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaagaaaaaaaagaataaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaajaajaajaajaajaajaajaagaaoaagaajaajaajaajaajaajaajaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaalaamaamaamaamaamaamaanaaoaapaaqaaqaaqaaqaaqaaqaaraaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaadaaaaasaasaasaasaasaasaasaagaaoaagaasaasaasaasaasaasaasaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaagaagaadaaaaaaaaaaaaaaaaagaaaaaaaaaaaoaaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaeaaeaavaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaagaagaaaaadaadaaeaaaaaaaajaajaajaajaagaawaagaajaajaajaajaaaaagaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaadaadaaaaaaaaaaagaagaaaaaaaaaaaaaaeaagaaaaalaamaamaamaanaaoaapaaqaaqaaqaaraaaaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaagaayaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaagaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaxaaxaaxaaxaaxaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaagaagaadaadaaaaagaagaaaaaaaaaaaaaaaaaeaagaaaaasaasaasaasaagaaoaagaasaasaasaasaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaadaadaadaadaagaagaaaaazaaaaagaagaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaxaaxaaxaaxaaxaaxaaxaaxaaxaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaagaagaadaagaagaaaaaaaaAaaaaaaaaaaafaaaaaaaaaaagaaaaaaaaaaaoaaaaaaaagaaaaaaaagaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaagaaaaagaaaaaaaazaaaaaaaagaaaaagaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaxaaxaaxaaxaaBaaCaaDaaxaaxaaxaaxaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaagaagaagaaaaaEaaFaaAaaaaaaaaaaaeaagaagaagaagaagaaaaaaaaoaaaaaaaaaaaaaaaaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaagaaaaaGaaGaaGaaGaaaaaHaaaaaGaaGaaGaaGaaaaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaxaaxaaIaaJaaKaaLaaMaaNaaOaaxaaxaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagaaEaaFaaPaaQaaAaaaaaaaaaaaRaaSaaSaaSaaSaaSaaSaaSaaTaaSaaSaaSaaSaaUaaVaaSaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaWaaXaaXaaXaaYaaZabaabbabbabbabcaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaxaaxabdabeaaMaaMaaMabfaaNaaxaaxaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagaaEaaPaaQaaQaaQaaAabhabgabiabjabjabjabjabjabjabjabjabjabkablablablabnabmaboablabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaeaagaaaabqabqabqabqaaaaaZaaaabqabqabqabqaaaaagaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaabrabsabsaaxaaxaaxaaxaaMabuabvbdrbbgaaMaaMaaxaaxaaxaaxabsabsabraaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagaaEaaPaaQaaQaaQaaQaaAabyabtabyabjabAabBabCabDabEabFabGabHabkabIabJabzabnabLabMabpabJabpabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaagaaaaaaaaaaaZaaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabrabrabNabOaaxaaxaaxabPabQabuaaxabRaaxaaMabSabTaaxaaxaaxabUabVabrabraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaaabWaaQaaQaaQaaQaaQaaAabyabKabyabjabYabZacaabDacbaccacdaceabkabJacfabXabnachaciabpabJacjackabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpabpablabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaGaaGaaGaaGaaGaaGaaGaaaaaZaaaaaGaaGaaGaaGaaGaaGaaGaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaabsaclacmacnacgaaxaaxaaxacpacqaaxaaxaaxacracsaaxaaxaaxactacuacvacwabsaaaaaaaaaaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaagaaEaaPacxacxacyacyacxacxaczacoacAabjacCacDacEacFacGacHacIacJabkacfacKabJabnacMacBabpabJabJabJabJabpaagaagaagaagaagaagaagaagaagaagabpabpacOabJacPabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaWaaXaaXaaXaaXaaXaaXaaYaaZabaabbabbabbabbabbabbabcaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagabsacQacnacRacSaaxaaxaaxacLacUacVaaMacracWacXaaxaaxaaxacYacZadaadbabsaaaaaaaaaaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaagabWaaQacxadcaddaddaddacxacxadeacxabjadfabDabDabDadgadhadiadjabkabpabpaetabnabmadlabpabJadmadnabJabpadoadpadpadpadpadpadpadpadqabpabpabJabJadrabJadsabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaabqabqabqabqabqabqabqaaaaaZaaaabqabqabqabqabqabqabqaaaaadaaaaagaaaaaaaaaaagaaaaaaaaaaadaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabrabradtaduacNadwaaxaaxadxadyadzadAadBacXadCaaxaaxadwadDadEadFabrabraagaagaagaagaagaagaagaagaagaagaagaagaagaagaaAaaAaaAacxadGaddaddadHacxadIadIadJabjadKadLadLadLadMadNadOaccabkadPabJaetabJabJacTabJabJadmadmadRabpadSadTadUadUadUadUadUadVadSabpbgKabJablablablabJadWabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaagaaaaaaaaaaaZaaaaaaaaaaagaaaaaaaaaaaaaaaaadaagaagaaaaaaaaaaagaaaaaaaaaaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrabradXadYabraaxaaxaaxadZaeaaebaecaedaaxaaxaaxabraeeadXabrabraaaaaaaefaegaehaehaeiaejaejaeiaejaejaeiaejaejaejaekaejaelaemadkaeoaddaepadIadIadIabjabjaeqabDabDabjaeraesabjabkaetabJaetaeuaevaewaevaevaexaeyaeyaezaeAaeBablablablablablaeCadSabpbgKabJablaeDablabJabJablaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaeaagaaaaaGaaGaaGaaGaaaaaZaaaaaGaaGaaGaaGaaaaagaaeaadaadaaaaagaaaaaaaaaaagaaaaaaaaaaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeFadvaeHadwaaxaaxaaxaeaaeIaecaaxaaxaaxadwaeJaeKaeFaaaaaaaaaaaaaeLaeMaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaeNaeOacxacxaePaeQaeRaeSaeTadIadIadQabjaeUaeUaeUabjaeVaeWadIaaAabJabJaetaeXaeYaeZafaaeZafbafcafdafcafcafeablaaaaaaaaaablaeCadSaetbgKabJablablablabJabJabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaWaaXaaXaaXaaYaaZabaabbabbabbabcaaaaaaaaeaagaagaaaaagaaaaaaaaaaagaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaffaeGaenafiafgafgafjaflafmafkafjafgafgafiafhafoafpaaaaaaaaaaaaafqaaaaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaagabWaaQafrafsaftafuafvafwadIadIadIafxabDabDabDabDaeVaeWafyaaAaetaetaetafzafAabkabkabkabkabkabkabkabkabkabkafnafnafnabkaeCadSafCacfafCabJabJabJabJabpabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafEafDafFaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafGaaaabqabqabqabqaaaaaZaaaabqabqabqabqaaaaagaaeaaaaagaagafHaaaaaaaaaafHaaaaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabradXafBabrafgafIafjafJafKafLafjafMafgafNafhadXabraaaaaaaaaaaaafqaefaegaehaeiaejaejaejaejaejaeiaejaejaeiaehafOafPafQafRaaQafSafTafUadIadIadIadIafVafWafXafXafYafZagaagbaevagcaevagdageabkagfagfagfaggaghagiagjagkagjaglagmagmabkagnagoagpafCagqagrabJabJabpabpaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagagtagsajjaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaguaguaguaguaagaaaaagaaaaaaaaZaaaaaaaagaaaaagaaaaaaaaeafHagvagvafHaaFaaFaaFafHagvagvafHaaaaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabragKagHabrafgafgafjagxagyagzafjafgafgabrafhagwabraaaaaaaaaaaaafqaeLaeMaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaeNagAagBagCagDagEagFadIadIadIadIaeVagGahtajoainagJagIaklaeZaeZaeZaeZagLabkagMagNagOagPaghagiagQagkagRaglagmagSabkagTagUagVagWagWaetabpabpabpaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaguagXagYagZahaahbaaZaaZaaZaaZaaaaagaagaaaaaaaaaafHafHafHahcahcahdaaQaaQaaQahdahcaheafHagvafHaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsahfahgabrahhahhahhahiahhahjahhahhahhabrahgagwabsaaaaaaaaaaaaafqahkaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaeNahlahmahnbntbhKbnxbnuahradIaeVahsakZasmaoJahuahvahvahvahvahvahvahvahvagNagkahwahxaghahyahzahzahAahBagmagmabkahCahDahEahEahEahEahEahEadqaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaagtagsajjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaagafHafHahFahGahHahFahFafHaaaaaaaaaaaaaaaaaaaaaaaaaaaafHafHahIahJahcahKafHahLahLahLafHahMaheahNahcafHafHaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrahOahPabrahQahRahSahTahUahVahWahRahXabrafhagwabraaaaaaaaaaaaafqahkaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaeNaeOafrafsaftbnyahYahZaeVagGauHauMauJaibahvaicaidaieaifaigaihaiiaijaikailahxaimaimavhaioaioaioaioaioabkaipaiqairaisadUadUadUaitaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHaivahFaiwaixaiyahFafHafHaagaagaagaagaagaagaagafHafHaizaiAaiBaiCahcafHaviavmavlaiDafHafHafHaiEaiFafHafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabraiGaiHaiIaiJaiKaiLaiMaiNaiOaiPaiPaiQaiIaiRadXabraaaaaaaaaaaaafqahkaefaegaeiaejaejaeiaejaejaeiaejaejaeiaehaehaehaehaehaehafOaiSafRaaQbnzafTaiTaeVaiUaiVaiWaiWaiXahvaiYaiZajaajbajcajdaiiajeajfajgahxaimajhajhaioajlajkakcakbaioaioaioaioaioajiablablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaagtagsajjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaaafHafHajnahcahFavKavoavLahFajpafHafHaaaaaaaaaaaaaaaaaaafHajqajrajsafHajtajuafHavNawjavNaagaagaagafHafHahcajvafHaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajwajxajyajzajAajBajCajDajEajFajGajHajIajJajKaaaaaaaaaaaaaaaafqahkaeLaeMaagaaaaaaaagaaaaaaaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaajLagBajMbhKagEajNaeVajOajPajQadIajRahvajSajTajUajVajWajXaiiajYaimajZahxaimakaakaaioakbakdakfakeagjakgagjakhakOakiaaaablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagafHafHakjakjakkafHagvawkagvafHahcajpafHafHaaaaaaaaaaaaafHafHakmahMaknafHakmahcafHavNawsavNaagaaaaaaaaaafHafHakoafHafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhahhakpakqakraksaktakuakvakwakxakyakzahhahhaagaagaagaagakAakBakCahkaaaaagaagaagaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaeNagAakDbnMakEadIaeVajOakFboEakGakGahvahvahvahvakHaiiaiiaiiakIakJakKakLakMakNboFakPakbakRaimakSakUakTakUalzalzakiaaaablaeCaiuaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaagtagsajjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHafHaizaiAaiAaiAaiAaiAakVaiAakWaiAaiAakXafHafHagvagvafHafHaizakYafHafHafHakmahcafHawtawHawGaagaaaaaaaaaaagafHahcalaagvaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhahhalbalcalcaldalealfalcalgalhalialiaehaehaehaljaehalkaeMakCakCaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaallalmbnualnadIaeVajOaloakGalpalpalqalpalpalralsaltalualvalvalwalxalyalvalvalvaioalBalAalDalCagjalEagjamnalzakiaaaablaeCalFaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaafEafDafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHaizakYafHafHafHafHagvagvagvagvafHafHalGaiBaiBaiAaiAaiAaiAalHafHafHaagafHakmalIalIalIalJalIboGbqhalMalNaaaafHafHahdafHaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalOahhalPalQalRalSalQalTalRalQahhahhalOaaaaaaaaaaagaaaaaaaaaakCakCaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaalUalVaftbnyalWalXaeVajOaloakGalYalZamaambbqiamdameamfamgamhamhamiamjamkamhamlammaioampakbakbaioaioaioaioaioaioaioalvalvamqalyawnawnawnawnaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagagtagsajjaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHakmafHafHaagaagaagaagaagaagaagaagafHafHafHafHamragvafHafHafHafHaagaagafHakmalIamsamtamuamvamwbsCamyamzamAaagabWaaQamBaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagalOahhamCalRalQamDamEamFalQalRaagaagalOaaaaaaaaaaagaaaaaaaaaafqamGaaaaaaaaaaaaaaaaaaakAamIamJamJaljamJamJamJaljamJamJamJamKamLaaQbnzafTamMaeVajOamNakGamOamPamQamRamSamTamUamVamWamVamVamXamYamVamVamZanaancakbakbakbandaneakbakbakbanfaioakbanganhalyanjaniankauDaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaagawnafEafDafFawnaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvaizakYafHaagaagaagafHagvagvagvafHaagaagaagaagaagaagaagaagaagaagaagaagafHafHakmalIanlamuamuanmannbtjaaQanpanqaehaekaeianraehaehaehansaehaehaehaljaehaehaehansaehantanuaaaaaaaaaaagaaaalOahhakualQanvanwanxanyanzalQaagaagalOaaaaaaaaaaagaaaaaaaaaahkahkaaaaaaaaaaaaaaaaaaaeLaeMaaaaaaaaaaaaaaaaaaaagaaaaaaaaaanAanBajMbhKagEanCaeVajOaiaakGanDanEanFanFanGalranHanIanIanIanIanIanIanIanJaxoarGanLakbakbakbakbakbakbakbanMakbanLakbanNanPanOanQaswanRauDaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaagawnawnagtagsajjawnawnaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvakmanXanYanYanYanYanYanZahcaoaafHafHafHafHafHafHamrafHafHagvagvagvagvafHakjaobaocaodamuamuaoeaofbtFafraohaoiaagabWaaQamBaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaanAaojanuaaaaaaaagaaaalOahhaokalQalQaolaomaonalQalQaagaagalOaaaaaaaaaaagaaaaaaaaaahkahkaaaaaaaaaaaaaaaaaaahkaaaaaaaaEaaFaaFaaFaaFaaFaaFaaFaaFaaFbvdakDbnMaooadIaopaoqaiaakGanDanEanFanFaoralramoamoamoamoamoamoamoamoaosaotaouanSanTanTanTanUakbanVaioaioaioaioalvamqalyalvaovanWaowauDaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagawnaoxagsaoyagsagsawnawnawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaagvakmanXanYaoEaoFaoGanYaoHahcahcafHahcahcaoIahcafHawIaoKafHahcahcaoLahcaizaiAakYalIaoMamuamuaoNaoObvsaoQaoRaaaaagafHahdafHaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaanAaojanuaaaaagaaaalOalOalOalOalQalQalQalQalQalOalOalOalOaaaaaaaaaaagaaaaaaaaaaoSaoSaaaaaaaaaaaaaaaaaaaoTaagaagaeNahLahLahLahLahLahLahLahLaaAaaAacyaaAaaAaaAaoUaoVaoWakGalralralralralralrajmaoXaoYaoZapaapbapcanbapdapeapfaozaoBaoAaoAaoAaoDaoCaioaplapmapnapoaeCadSawnapjaphappapkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagsagsaprapqagsagsaoxapsawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagagvakmaivanYbvtapxapyanYanYanYapzapAapAapBapCahcafHafHafHafHapDapEapEapEapFapEapEapEapGamuapHalIbvubvuahLapJaaaaagafHapKafHaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaanAaojanuaagaaaaaaaaaaaaalOalOalOalOalOalOalOaaaaaaaaaaaaaaaaaaaagaaaaaaaefapLahkaaaaaaaaaaaaaaaaaaakCaaaaaaaaabvwbvvbvvbwmbvvbvvbvvbwEbvvbvvbxuaaaaaAbxGapMapNapOajiapPapQapRamoapSajmajmapTapUapVapWapiapiapXapYapZanaaioapuaptaqaapvaqdaqcaioaqgaqhabJabJaeCadSawnawnawnawnawnabpabpaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagawnaoxagsaqeagsaqfawnawnawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvakmahcanYaqkaqlaqmaqnaqoaqpaqqafHafHaqraqsapAapAapBahcahcaqtapEbxUaqvaqwaqxaqyapEaqzamuaqAalIaaaaaaaaaaaaaaaaagagvahcagvaagaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaanAaqBaljaehaehaehaehaehaehaehaehaljaehaehaehaehaehaehaehaehaljaehaehalkaeMahkaaaaaaaaaaaaaaaaaaakCaaaaaabvwbyUbymbAabzjbzjbzjbzjbzjbzjbzjbwmbAqacyacyaqCaqDaqEapgaqFakQaqGamoaqHaqIaqJapTaqKaqLapdajmajmaqMapdaotanaaioaqjaqiaqOaqNaqPaqPaioabJaqTaqUaqUaqVadSabpaqWaqXaqYaqZaraablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagawnawnagsagsagsawnawnaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaagvarbarcardarearfargarharianYahMafHahcahcarjarkarlarmarlarlarlarnaroarparqarrarsapEaqzamuaqAalIaaaaaaaaaaaaaagaagafHartafHaagaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaaaaaabEIbEZbEZbEZbEZbEZbEZbEZbEZbEZbEZbGobFabGqbGpaqCaqDaruarvakQarwarwamoarxakQaryapTarzarAarBamfarCarDarEarFarGarHarHarHarHarHaqQaqQaqQaqRaqQaqQaqQarKadSabpaqhabJabJabJaqhablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagawnauDauDauDawnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaagaaaaaaafHafHarLahcanYarMarNarOarParQanYafHafHafHafHarRarSarTarUarVarWarXbGrarZasaasbascasdapEaseasfasgalIaaaaaaaaaaagaagaiDafHahdafHaiDaaaaaaaaaaaaaaaaaaaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaoTaaaaaaaaaaaaaaaaaaaoTaaaaaabGsbGubGtbGtbGvbGvbGvbGvbGvbGvbGvbwmacyacyacyaqCaqDaruajiasharwarwamoasiasiasjaskaslaqbawVasnasoanbapdaotaspasqasrassastasuarIaqSaqSaqSaqSaqSarJarKadSabpabJabJasyabJabJablaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHaszasAasBasCasDasEasFasGasHasIasDasJarkasKarkasLasMalIalIalIasNalIapEapEasOasPasQapEapEasRasSasTalIaagaagaagaiDaiDaiDaaQaagaagaiDaiDaiDaaaaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaaaaaaaaabGsbvvbvvbwmbvvbvvbvvbwEbvvbvvbGwaaaaaAbGxaqCaqDasUajiasVajiajiajiasWasWasXajiasWasYajiajiajiajiasZaotataasuatbatcatdasqaqSasvasxaqSateaqSatfarKadSabpatiabJaqhabJabJablaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaagaagaagagvatjahcatkatlatmatnatoatpatqatratsatoatoattarXarXarXatuatvalIatwatxatyatzatxatAatBatCatDatEatEatFasSatGalIaagaagaiDaiDaaQaaQaaQaagaagaaaaaaaiDaiDaaaaaaaaaaagaaaaaaaaaaagaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaagaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaakCaagaagaagaagaagaiDaiDaiDaiDaiDaiDaaAacyacyacyaaAaaAaqCaqDatHatIatJatKatLatLatMatMatNatOatOatPajiatQatRatSatTanKatUatVatWatXatYasqathatgaqQaqQaqQaqQaqQarKadSabpabpaubabpabpabpabpaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaafHagvafHatkaucbapbapbapbapbapbapbapbapbapbapaWCaWCaWCaPcaPcaPcaugasSasSauhasSauiaujaukasSasSasSasSasSatGalIaagaiDaiDaaQaaQaaQaaQaagaagaaaaaaaaaaiDaiDaaaaaaaagaaaaaaaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaabGyanuaaaaaaaaaaaaaaaaaaaagaaaaaaaaQacybGzaddaddaddaddaqCaulaumaumaunauoaupauqauqauqauqauqauqaurausautauuausautauvapfauwauxauyauzauAauaatZauCauBauFauEaqQaeCadSabJabJabJabJabpaagaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagaaaagvatkaucbapbiXawWbeGawXawZawYaxhaxabapaxmaxnaYHaxBaxAaxEaxCasSasSauhauNauOauPauQauRauSauRauRauRauTalIaagaiDaaQaaQaaQaaQaaQaagaagaaaaaaaaaaaaaiDaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaoTaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaaaaaaaagaaaaaaaaaacybGzaddaddaddaddauUauVauWauWauXaddaqDaddauYauZauZavaauZavbajiavcavdapgapYapZanaasqasuasqasuasqauGaqSaqSauFaveauFaqQavgadSabpabJabJabJabpabpaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHafHafHatkaucbapbkaaxFbfRaxGbfTaxHayhaxKayjayiaykaYHaxBaxBaxEaxCasSavpauhavqalIavravsavtalIalIalIalIalIavuavuaiDaaQaaQaaQaaQaaQaaQaagaaaaaaaaaaaaaiDaagaagaagaaaaaaaaaaaaaaaaaaaagavvaaQaaQaaQaaQaaQaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaaaaagaaaaaaaaaavwavwavwavwavwaaAaaAaaAavxaaAavyaddaqDaddaruavzavzavzavzavzavAavzavzavzaosaotavBavfavCavCavCavfavEavDaqQavFauFavGaqQagnavIabpavJabJabJabJabpabpaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHahcahcahcafHafHahcatkaucbapbgSbgTbgUaylbgWbfUayJaymbapaykaykaYHayKayKaxEaxCavOavPavQavqalIavRavSavTavUavVavWavXavTavTavuaaQaaQaaQaaQaaQaaQaagaagaaaaaaaaaaaaaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaavvaaQaaQaaQaaQavvaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaaaaagaaaavYavwavwavZavwawaavwavwavwawbawcaaAaqCaddaqDaddaruavzawdaweawfawhaxjawiayLayNapdaotanaavHauCavHauCavHaqQavHaqQaqQaqQaqQaqQaeCawoabpabpabpabpabJabJabpaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaySahcazdahcahcafHahcawpaucbapaWCaWCaWCazeazfbeFayJazgaSwaSwaSwaSwazhaSwaSwaugavOawuavQawvalIawwawxavTavTavTavTawyavTavTawyaagaagaaQaagaagaaQaagaaaaaaaaaaaaaaaaaaaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaQaaQavvawzaaQaaQaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaahkaaaaaaaaaaaaaaaaaaaaaaaaaaabGNaojanuaaaaaaaagavYavYavZavZavZavwawaawaawaavwavwawAaaAaqCaddaqDaddaruavzawBawCawDawEawFazjaziazkapYapZanaawmawJawKawLawMawNawOawPawPawPawPawQawRawSawTablaaaabpabpabJabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagafHazmazlaAdaAcahcamrahcawpawUbapbiXbiYbiZaAebjbbfUayJaAfaSwaAgaAhaAhaAhaAiaSwaugavOaxdavQavqalIawwawxavTavTavTavTavXaxeavTavXaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaagaaaaagaagaagaagaagaagaagaagaaQaaQbHxaxfaaQaaQaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUapLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGNbHyaaaaaaavYavYavZavZavZavZavwawaawaawaawaavwaaAaaAaqCaddaqDaddaruavzaxgaAjaxiawgaxkaxlaAkaATatTaxoaxpaxqaxraxraxraxsaxtawOawPaxuaxvawPawQaxwaxxaxyabpabpaagablabJaxzablaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaknahcaAWahcahcafHaAYaAXaBaaAZaBcaBbaBfaBebjbaBgaBiaBhaSwaBOaPeaPeaPeaBPaSwaugasSaxLauhaxMalIawwaxNaxOaxOavuavuavuavuavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiDaagaagaagaaaaaaaaaaaaaaaaaaaaaavvaaQaaQaaQaaQavvaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaaaavwavZavZavZavZavZavwawaawaawaawaawaaaAaaAaxQaddaqDaddaruavzaxRaxSaxTaxjaxUaxVaxWaxXaxYaxZayaaybaycaydayeayfawQawQawPawPawPawPawQaygagnadSabJabpablabpabJabJablaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHahcahcahcafHafHaBQawpawUbapbgSbgTbgUaylbgWbfUayJaBSaSwaBOaBUaBTaBWaBVaSwaugasSasSauhavqalIawwaxNaxOavTavTayoavuavuaagaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiDaaaaaaaagaaaaaaaaaaaaaaaaaaaagavvaaQaaQavvaaQaaQaagaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwavwavZavZavYavYavZavwawaawaawaawaawaaaAaaAaqCaddaypayqayraysaytayuayvaywayxayyayzavAapdaotanaawlayAbHzayCayDayEayFayGawPawPawPawQayHaeCadSabJabJabJabpabJayIablaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHafHaBQawpawUbapaWCaWCaWCaBXaBYbrSaCaaBZaSwaCbaPeaCNaCQaCPaSwayTasSasSauhavqalIawwayUaxOavTavTayoavXaagaagaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaiDaiDaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaagaaaaaaaagaagaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaEaaFayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwavZavZavZavZavYavZavwawaawaawaawaawaaddacybHAaddaqDaddasUayWayXayYayYayZavAavAavAavAazaapZanaawlawlawlawlawlawlawQawQawQawQawQawQabkazbaxyazcaetabJabpabJabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRafHaCTaCSaAYaCUaCVawpawUbapbiXbiYbiZaAebjbbfUaBiaCXaSwaCYaUDaCNaDaaCZaSwaugasSasSauhavqalIawwaznaxOavTavTayoavXaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaiDaiDaagaagaagamHaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamHaagaagaagaagaagaagazoazpaeiazqazraagaagaagaagaagaagaagaagaagaagaagaagaagaagakCaagavwavwavwavwazsavwavwavwaztazuazuazuazvazwazxbHBauqazzaddazAazBazCazDazEazFazGazHazIazJazKapZanaazLazMazMazNazOazPazQazRazSazTazUazVazWaeCazXadsabJabJabJabJablaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRagvaDMaDbaDObHCaDPaAXaBaaAZaBcaBbaFyaylbpebeFayJaDQaSwaDRaDTaDSaDWaDUaSwaugasSasSauhavqalIawwawxavTavTayoayoavXaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaiDaiDaiDaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaalUaxPaAoahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwaApaApaApaApaApaApavwaAqawaawaawaaAraddacybHDaddaAtaAuaAuaAvaAwaAxaAyaAzaAAaABaACaADaADaAEaAFaAGaAHaAIazMaAJazMazMazMazMaAKazMaALazWaeCadSabJaAMaANabJabpabpaagaAOaAOaAOaAOaAOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaExaCUaDPaEzaCVafHahcaStawUbapbgSbgTbgUaEAaECaEBaEEaEDaSwaSwaSwaEFaEGaSwaSwaugasSasSauhavqalIawwawxavuavuavuavuavuaaaaaaaaaaaaaaaaaaaaaavuavuawyavuavuaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaalUaxPaeMaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaavwavwaApaApaApaApaApavwaAqawaawaawaaAraaAaaAaAsaddaBnaddaBoaBpazCaBqaBraBsaBtamoaBuanIaBvaBwavdaBxaByaBzaBAaBBaBCaBAaBAaBAaBDaBAaBAaBEaBFaBGaBHaBHaBHaBIaBJaagaagaBKaBLaBMaBMaBNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaCRafHafHafHafHafHahcaEHawUaEIaEIaEIaEIaEIaEIbapaEJbapaSwbHEaFvaCNaCQaFxaSwaugasSasSauhawvalIaCgawxavTaChaCiavTavuavXavuavuavXavuavuavXavuaCjavTaxeavuaaaaaaaaaaaaaaaaAOaCkaAOaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaaaavwaApaApaClaApaCmaCnaCoaCpaCpaCpaCqaaAbImaAsaddaBnaddaruazCazCaCraCraCraCsamoaCtamoamoamoamoaCuaCvaCwaCxaCyaCzaCAaCBaCwaCwaCwaCwaCCaCDaiqaCEaiqadUadValFaaaaaaaCFaCGaCHaCIaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHazYazZaAaafHahcawpawUaEIaFzaKYaKZaLaaEIaGiaGvbasaSwaPdaGwaCNaCQaGxaSwaugasSasSauhavqalIawwaDgaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDhaDiavTavuaaaaaaaaaaaaaDjaDkbIMaDmaDnaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaoTaagaagavwavwaDoaDpaApaDqavwawaawaawaawaavwaaAaaAaDraddaBnaddaruaDsaDtaDuaDvaDwaDxaDyaDzaDAaDBazMaDCazMaDDazMaCuaCuaCuaCuaCuaDEaDFaDFaDGaDHazWazWazWazWazWaeCalFaaaaaaaBKaDIaBKaBKaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvaAPaAQaARaAQaASahcawpawUaEIaLMaLNaMoaMoaEIaGyayJaGzaSwaPSaGwaGAaGCaGBaSwaEaasSasSauhavqalIawwawxaCiaChaChavuavuavXavuavuavXavuavuavXavuavTawxavTavuaaaaaaaAOaEbaEcavTavTavTaEdaDnaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaAOaAOaAOaaaaaaaaaaaaahkaaaaaaaaaavwavwaEeaApaDqavwawaawaawaavwavwaagacyaAsaddaBnaddaruaDsaEfaEgaEhaEhaEiaEjaEkaDAbIObINbINbINbIQbIPaCuaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaeCalFaaaaBKbIRaEuaEvaEwaBKaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagafHafHafHafHafHafHahcawpawUaEIaGDaMoaMoaGEaEIaGFaHEbcDaSwaRkaHGaHFaHIaHHaSwaugasSasSauhavqalIawwawxavuavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaavuavuaENavuavuaaaaEOaEPaEQaDhaERaESavTavTawyalOalOalOalOalOalOalOalOalOalOalOalOalOalOalOaaEaaFayVaETaoiaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaDjaEUbISaEWaDnaaaaaaaaaahkaaaaaaaaaaaaavwavwavwaDqavwawaavwavwavwaaaaagacyaEXaEYaBnaddaruaDsaEZaFaaFbaFcaFcaFdbITaDAbIVbIUbJRbJCbJTbJSaCuaEtaEtaEtaFlaFmazMazMazMaFnaFoaEtbMKaEtazWaeCalFabpabpaFpaFqaFraEuaEwaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvahcaAQaCKaAQamrahcawpaHJaEIaHLaHKaMoaIkaEIbapaIlbapaSwaSwaxEaImaInaSwaSwayTasSasSauhavqalIawwawxaFCaFDavuaagaaaavuavuavuavuaagaagaagaagaFEaFFaFGaCkaCkaFHaFIaFJaFKaFLaDiavTaFMaFNaagaagaagaagaagaagaagaagaagaagaagaagaagaagaFOazpaeiazqaFPaagaagaagaagaagaagaagaagaagaagaagaagaagaagaFHaFQaFRaFRaFRaFSaFGaCkaFTaFUaFVaCkaFWaFWaFWaFWavwaFXavwavwavwaagaagaagaagacyaFYaAsaBnaddaFZaGaaGbaGcaGdaGeaGfaGfaGgaDsbNGaIpaGjaIHaIHbNGazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaGnaGoaGpabpaGqaGraGsaGtaGuaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJbOVaaaaaaaaaaaaaaaaaabNJbQsbQrbQrbQrbQrbQrbQrbQtbOVaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHaDJaDKaDLafHahcaEHawUaEIaIJaIIaJcaJbaJeaJdaJgaJfaJfaJkaJfaJGaJIaJHalIaxCasSaGGaGHaGIaGJaGKaGLavTaGMavuavuavuavuaGNaGOavXaaaaaaaaaaaaaEOaGPaGQaGQaGQaGQaGRaGSaGTaGUawxaGVaGWaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaalUaETaAoahLapJalOalOalOalOalOalOalOalOalOalOalOalOalOalOalOaGXaFRaFRaGYaGZaHaaHbaHcaHdaHeaHfaHgaHhaHhaHhaHhaHhaHiaGSaaaaaaaaaaaaaagaaaacyaHjaHkaHladdaFZaHmaHnaGcaHoaHpaHqaHqaHraDsaEtbRmaEtaEtaEtaEtazWaCuaCuaCuaCuaHtaHuazMaHvaHtaCuaCuaCuaCuazWaHwaHxaHyaHzaHAaHBaEuaHCaHDaFsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSJbTVbOVaaaaaaaaaaaabNJbTZbUabUabUcbUbbUabUabUabUabUdaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHafHafHahcawpawUaEIaJSaJRaJUaJTaKoaKnaKqaKpaKraKraKraKtaDVaKuaKzaxCasSaukaHMaHNalIawwawxavTavTaCiavTavTavTavTavTavXaaaaaaaaaaaaaaaaHOaHOaHOaHPaHOaHOaaaaaaaHQaENaGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaHQaHRaFRaHSaHTaHUaHVaHOaeNaHWapJaHOaHOaHOaHOaHOaHOaHOaaaaaaaaaaaaaagaagaagacyaHXaAsaHYayqaHZaIaaIbaGcaGdaIcaIdaIdaIeaDsaEtaEtaEtaEtaEtaEtazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIfaIgadSabpaBKaIhaIiaIiaIjaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBbUfbOVaaaaaabNJchtbTZbUabUabUabUabUabUabUacmicyQbQrbOVaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaafHahcawpawUaEIaKAaKAaKFaKBaEIaEIaLbaUlaLdaLcaLeaLeaLhaLgalIaxCasSaIqaHMaIralIawwaFLaDiaChaLlaLlaLlaLlavuavuavuaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaGTaIsaHSaItaGWaaaaaaaaaahkaaaaaaaaaaaaaIuaIuaIuaIuaIuaIuaIuaagaagaaaaagacyaIvaIwaIxaddasUaDsaIyaIzaIAaIcaIBaICaIDaDsaEtaEtaEtaEtaEtaEtazWaEtaIEaEtaIFaFmazMazMazMaFnaIGaEtaIEaEtazWaeCabpadSabpaBKaFsaFsaFsaBKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRbUfbOVbNJchtcySbUdcyTbUabUabUabUabUabUabUacyVcyUcyWaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagafHafHawpawUaueaLnaJfaJGaLoaLpaJfaLraUlaLtaueaueaueaueauealIaugasSasSaHMaIKalIaILavTawxaIMaJjaLLaLKaJjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaHQaINaGWaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaIuaIuaIuaIuaIuaIuaIuaagaaaaagaaAaqCaddaIPaIQaruaDsaIRaGcaGdaIcaISaITaIUaDsaEtaEtaIVaEtaEtaEtazWaEtaEtaEtaEsaGkazMazMazMaGlaEpaEoaEoaGmazWaIWabpaIXabpaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQbTVcySbUabUdcyTbUabUabUabUabUacyXchtbQrbTVcyYbOVaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaafHafHafHaagaagaszaIZaJaaueaLPavnaLRaLQaLSaKraLVaLTaLYaWKaMaaLZaPYaPZalIaugasSasSaJhaJialIawwavTawxaJjaJjaMeaMbaJjaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaalUaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaFEaJlaJmaagaagaagaagaoTaagaagaagaIuaIuaJVaJnaJoaJpaJVaIuaIuaagaaaaagaaAaqCaJqaJraJsaruaJtaJuaJvaJwaJxaJxaJxaJxaJtazWaJyaJzaJzaJAazWazWaCuaCuaCuaCuaHtaJBazMaJCaHtaCuaCuaCuaCuazWaeCabpaJDabpabpabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZbQrczacyRczbbUaczcbUacyQczeczdbUabUabUacyXchtcySczfczfczgbTZaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaagvanXafHafHafHawpaJEaJFaueaMpavnaMraMqaDVavMavMavMaMtaMsaMvaMuaMCaRualIaugasSasSaJKaJLalIaJMaJNaJOaJjaJPaJQaMDaJjaMEaMGaMFaMlaMlaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaJVaJoaJVaJoaJVaIuaIuaagaaaaagacxaqCaJqaJXaJsaruaJtaJYaJZaKaaKbaKbaKcaKdaJtaKeaKfaKgaKhaKiczhazWaEnaEoaEoaEpaEqazMazMazMaEraEsaEtaEtaEtazWaIWabpadSaKkabJabpaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJchtbQrbTZbUabUabUaczgbTVbQrbQrbQtcyYchtcySbUaczicziczjbUdaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaagvagvahcahcahcahcaKlaKmaMJaueaMKavnaMPaMOaMSaMQaNkaNjaNlaueaNnaNmaNoaRualIayTasSasSauhavqalIaKvavTawxaJjaKwaKxaKyaJjaNsaNxaNxaNyaMlaMlaaaaaaaaaaaaaaaaagaagaagaagaagaKCaFFaKDaagaagaagaagaagaagaagazoazpaeiazqazraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagamHaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaJVaJpaKEaJnaJVaIuaIuaagaaaaagacxavyaJqaKGaJsaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaKNabJaKOaKPaKQazWaEtaEtaEtaKRaFmazMazMazMaFnaKSaEtaEtaEtazWaeCabJadSabpabpabpaagaagaaaabpabpablabpabpaaFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNJcyYbTVcySbUabUdbUabUabUabUabUabUabUabUaczgbTZbUabUabUabUabUaczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagagvagvahcahcafHafHafHaKVaKWaMJaueaNBaNAaNAaNIaNMaueaJJaueaJJaueaueaueaueauealIaugasSasSauhavqalIawwaCiawxaJjaLiaLjaLkaJjaNNaNPaNOaOhaOgaMlaaaaaaaaaaaaaagaagaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaaaaalUaxPaAoahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaJlaGSaaaaaaaaaaaaahkaaaaaaaaaaIuaIuaJVaIOaJVaLsaJVaIuaIuaagaaaaagacxaqCaddaLuaLvaruaJtaLwaLxaKHaLyaLzaLzaLAaJtaKMaLBaKgaKOaLCaKgazWaEtaEtaEtaEsaLDazMczlazMaGlaEpaEoaEoaGmazWaeCabJadSabpaaaaaaaaaaagabpabpczmaNgaOeabpabpabpbNJcyYbQrbQrbQrbQrbQrbQrbQrcyYbOVaaabNJchtcySbUabUabUabUdbUabUacyXbQrbQrbQtczebUabUabUdbUabUabUabUabUaczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvaLIaLJafHafHaagafHaOfaKWaueaueaueaueaOuaOjaOvaueaLUaOwaKsaODavnauKaIoavnalIaugasSasSauhavqalIawwavuawxaJjaJjaLWaLXaJjaNNaPgaPfaOhaPhaMlaMlaaaaaaaagaagaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaaaaalUaxPaoiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFGaagaagamHaagaoTaagaagaagaIuaIuaIuaLmaMcaMdaJWaIuaIuaIuaIuaIuaIuaqCaddaBnaddaruaJtaKHaKIaKHaKJaKKaKLaKHaJtaKMaMfabJaKMaMgaMhazWazWazWazWazWazWazWazWazWazWazWazWazWazWazWaeCabJadSabpabpabpabpabpabpaLGaLGcznaLGablaLGablchtcySbUabUabUabUabUabUabUaczgchtbQrchtcySbUabUabUabUaczobUabUabUdczpczqbUabUdbUabUaczkbUabUabUaczrczsczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcaMjafHaagaaaagvaMkaKWaueaPsaPtaWKaPTaPuaLtaufaMwavnavnavnavnavnavnaMxalIaxCasSasSauhavqalIawwaCiawxaMyaMzaMAaMBaMyaPUaPVaPVaPXaPWaQkaMlaaaaagaagaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaaaaalUaxPaoiaaaaaaaagaaaaaaaaaaaaaaaaaacztcztcztcztcztaaaaaaaaaaaaaaaaaaamHaaaaaaaaaaaaaaaaaaaAOaAOaAOaEOaMHaMIaGSaaaaaaaaaahkaaaaaaaaaavvaagaIuaLOaMLaMMaMNaMNaQnaQmaQMaQLaQmczuaRlaBnaddaruaJtaMTaKHaRmaMUaMUaMUaMVaJtaKMaMWabJaMXaMYaMZadUadUadUadUadUadUadUadUadUadUadUadUadUadUadUaNaaeZaNbaeZaeZczvaeZaeZczwczxczxczyczxczAczzaRgbQtbUabUabUabUabUabUabUabUabUabQtbUabQtbUabUabUabUabUaczBbUabUabUdbUabUabUabUdbUabUaczBbUabUabUaczCczDczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcaNhafHafHafHafHaNiaKWaueaRnavnbbvaRpaRoaRqaNpaxJaNqavnavnavnaRravnaNraRsaxCasSasSauhawvalIawwavTawxaMyaNtaNuaNvaNwaRtaSyaSxaSAaSzaSHaMlaagaagaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaaaaalUaxPaoiaaaaaaaaaaagaaaaaaaaaaaacztcztaNCaOxaOyaOzaNCcztcztaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaDjaNDczEaNFaDnaGTaNGaGSaaaaaaaaaahkaaaaaaaaaaLqaNHaIuaMmaNJaNKaNLaSJaTxaThaTzaTyaTBczFaTCaBnaddasUaJtaJtaNRaJtaNSaNSaNSaJtaJtaNTaNUaNVaKMaNWaNXaBIaBIaBIaBHaBHaBIaBIaNYaBIaBIaNYaBIaBIaNZaOaahEaBIaObabpabpaOcabpabpabpaOdaLGaLGaLGablaLGablchtczebUabUabUabUabUabUaczGcyXchtbQrchtczebUabUabUabUaczobUabUabUdbUaczHbUabUdbUabUaczkbUabUabUaczrczrczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaagvahcahcahcahcahcafHaPbaKWaueaVJaMPaTDaTEaMOaTFaLfaUBaUbaUEaUCaUGaUFaOkaOlalIaxCasSasSauhavqaOmaOnaOoaOpaMyaOqaOraOsaOtaUHaNxaNxaNyaUIaUJaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaaaaalUaxPaeMaaaaaaaaaaaaaagaaaaaaaaacztaNCaPvaPwaPxaPyaPzaPAaPBaNCcztaaaaaaaaaaagaaaaaaaaaaaaaEOaFQaOAaOBaFRaFSaOCaNGaGSaaaaaaaaaahkaaaaaaaaaaLqaagaIuaMnaOEaOFaOGaOHaOIaIuaUYaULaIubHAaNQaBnaddatHatKatMatMczIaOJaOJaOJaOKaOLaIgaOMaONaKMaOOaOPabpaOQabpaORaOSabpaOTaOUabJabJaOVaOWabpabpabpabpabpaaQablaOXaOYabJablabpabpczJaLFaPaabpabpabpczKbTVbQrbQrbQrbQrbQrbQrbQrbTVczLaaaczKchtczebUabUabUabUdbUabUabUdbUaczNczMbUdbUabUabUdbUabUabUabUabUaczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHafHafHafHafHahcaVDaVEaKWaueaueaueaueaVGaVFaLtbgZbgZbgZbgZbgZbgZbgZbgZbgZalIaPjaPkasSauhaPlaOmaPmaPnaPoaMyaPpaPqaPraMyaVHaWaaVIaOhaWDaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaFFaGSaaaalUaxPaeMaaaaaaaaaaaaaaaaagaaaaaacztaNCaQpaQqaQraQsaQtaQuaQvaQwaQxaNCcztaaaaaaaagaagaagaagaagaKCaPCaPDaFRaFRaFRaPEaPFaJmaagaagaagaoTaagaagaagaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaxQaNQaBnaddaddaBnaddaddaddaddaddaddaPHabpabJaPIaONaPJaPKaPLaPMaPMaPMaPMaPMaPMaPNabJaPOaPOabJabJablahLaeOaPPahLahLabpabpabJabpabpahLabpabpablabpabpahLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKbTVcyYczeczObUdbUabUaczgbQtbQrbQrcySbUabUabUdczrbUabUabUabUaczkaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaafHaCSahMaySafHarjaWEaWFaRjaueaPsaPtaWKaWGaPuaLtbgZaWIaWHaXIaWJbhUaXJbhWbhXalIaQaaugasSauhaQbaQcaQdaQeaQfaQgaQhaQiaQjaMyaXKaXMaXLaOhaXNaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEOaQoaGSalUaxPaoiaaaaaaaaaaaaaaaaaaaagaaaaaaaNCaQpaPxaRHaRHaRIaRJaRKaRHaRHaPzaQxaNCaaaaaaaagaaaaaaaaaaaaaEOaQyaFRaFRaFRaQzaQAaNGaGSaaaaaaaaaahkaaaaaaaaaaPGaQBaQCaQDaQEczPaQGaQHaQIaQJaQKaXOaXPaMRaQNaQOaQPaQPaQQaQRaQSaQTaQPaQPaQPaQUaQVaQWaQXaQYaQZaRaaPLaRbaRcaRdaReaRfaPMabpabpabpabpabpaiDaiDaagabWamBaagaagaagabpaRgabpaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKchtbQrbTZbUabUabUabUabUabUabUabUabUabUdczrbUabUabUabUabUdaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbahcaXQafHaStaSuaXRaSvaueaRnavnbbvaXSaVFaLtbgZaYIaWHaXIaYJbjibjibjibjjalIczQaugaRwaRxaRyaOmaRzaRAaRBaMyaRCaRDaREaMyaPUaPVaPVaPXaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaalOaRFaRGayVaxPaoiaaaaaaaaaaaaaaaaaaaaaaagaaacztaNCaSLaSMaSNaSOaSPaSQaSRaSSaSTaSUaSVaNCcztaaaaagaaaaaaaaaaaaaaaaGTaRLaRMaRNaGWaDjaNGaGSaaaaaaaaaahkaaaaaaaaaaPGaROaRPaRQaRRaRSaRSaRTaRUaQFaRVaRWaPGaRXaRYaRZaRZaRZaSaaSaaSbaScaSdaSdaSdaSeaezaSfaSgaShaSiaSjaSkaSlaSmaSnaSoaSpaPMaaQamBaaaaSqaSraSraSraSsabWamBaaaaaaaagalOalOalOaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSJbQrczRcyRczbbUabUabUabUabUabUaczcbUaczSbUdczrbUaczTbUacyXbTZaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHaYKaAUaAVaYMaYLaYOaYNaCUaCUaZraZqaMPaTDaZsaMOaZtbgZaZvaZuaZxaZwaZHbkgaZIbkhalIaSBaSCaSDaSEavqaOmaOnaOoaOpaMyaMyaSFaSGaMybahbajbaiaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaalOaFOaSKaeiazqazraagaagaagaagaagaagaagaagaagaaaaNCaTOczUaRHaTRaRHczWczVaRHaRHaTVaRHczXaTXaNCaaaaagaaaaaaaaaaaaaaaaaaaHOaHOaHOaEOaSWaSXaGSaaaaaaaaaahkaaaaaaaaaaPGaSYaSZaTaaTbaTcaTdaTeaTeaTeaTfaTgbakaTiaTjaTkauZaEYaBnaBnaTlaTmaaAaTnaTnaTnaTnaTnaTnaTnaPMaPMaPMaToaTpaTqaSoaTraPMaTsaTsaPMaTtaTuaTvaTuaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcyRcyQcyYcyYcyYbQtbQrbQrczkczkczkbTVbQrczeczYcyXchtczLaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagafHahcbalaBRbanbambaqbaobatbarbbmbauaFwaFwbbnaVFaLtbgZbboaWHaXIbbpbbrbbqbbsbltalIatwaTGasSauhavqalIawwavTaTHaTIaTJaTKaTLaTIaMlaMlaMlaMlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaETaTMaTNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaNCczZaTPaTQaTQaTQaTScAaaTQaTQaTQaTQaTWczZaNCaaaamHaagaagaagaagaagaagaagaagaagaFEaJlaFNaagaagaagaagaoTaagaagaagaPGaTYcAbaUabbtaUcaQFaQFaQFaQFaQFaUdaPGaUeaUfaUgbImaAsaBnaBnaTlaUhaaAaUiaUjaUkaUmaUoaUnaVWaUpaUqaUqaUraUsaUtaUuaUvaTsaUwaUxaTsaTtaUyaUzaUAaTtaiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcyRcAcczLczKchtbTZbUabUabUacAdbUabUabUabUaczgcyYchtczLaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCLaCMaAbbbubbFafHbcrbcqbcwbcubcybcxbcAbczbcCbcBaLtbgZbcEbgZbgZbcFbgZbgZbgZbgZalIaugasSasSauhavqalIawwavTaUMaTIaUNaTKaUOaUPaUQaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaEOaURaGSaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaUWaUSaUTaUSaUSaUSaUUaUVaUTaUSaUSaUSaUTaUSaUWaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaDjaJlaDnaaaaaaaaaaaaahkaaaaaaaaaaPGaPGaPGaPGaUXbcGaQFaQFaUZaVaaVaaNzaVdaVeaVfaVgaaAaEXaVhaBnaTlaTmaaAaViaVjaVkaVlaVmaVnaVoaVpaVpaVpaVqaVraVsaVtaVuaVvaVwaVxaVyaVzaVAaVAaVAaVBaiDaiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUecfBcAcczLaaaaaaczKchtczecAebUabUabUabUabUabUaczYcyQczLaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagafHafHaAbaCObcHafHbcNbcIbdHbcVbdJbdIbdKaCWaZsbdLbdQbdPbdRaJkbdTbdSaBjaBkaBlaBmaAnaugasSasSauhawvalIawwavTaFLaVKaVLaVMaVNaVOaVPaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaEOaVQaGSaaaaaaaaaaVRaVRaVRaVRaVRaaaaagaaaaUWaVSaVSaVSaVSaVScAgcAfaVSaVSaVSaVSaVScAhbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaEbaWbaHSaWcaWdaaaaaaaaaahkaaaaaaaaaaWeaWfaWgaWhaWiaRTaQFaWjaWkaWlaQFaOiaVdaWoaVfaFRaaAaWpaWqaBnaTlaTmaaAaWraWsaWtaWuaWvaWwaTnaPMaWxaPMaPMaWyaSoaSoaWzaTsaWAaWBaTsaSraUzaUzaUzaSraiDamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyZcyYczLaaaaaaaaaaaaczKbTVcyYczebUacAibUabUacyXbQrczLaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaafHbdUaEybdVafHatkbeDaFwbeEbeIbeHbeJaFwbeKaVFbeLavMbeNavMavMaMtaCcaCdaCeaCfaAnaugasSavpauhavqalIaWLaWMaWMaWNaWOaWPaWQaUPaWRaTIaaaaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaEOaVQaGSaaaaaaaVRaVRaWSaWTaWUaVRaVRaVRaUWaUWaWVaWWaWXaWYaWVaWZaXaaWVaWVaWVaWVaWVcAjbdiaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaXeaFRaHSaXfaXeaaaaaaaaaahkaaaaaaaaaaPGaXgaWfaWeaQFaQFaXhaXiaXjaXkaPiaQlaVdaWoaXnaXoaaAaXpaWqaXqaXraTmaaAaXsaXtaXuaXvaXwaXxaXyaXzaXzaXAaPMaXBaXCaXDaXEaPMaTsaTsaPMaTtaXFaXGaXHaTtabWamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczKczLaaaaaaaaaaaaaaaaaaaaaczKbTVbQrbQrbQrbQrczLaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaafHafHafHafHafHatkbeOaFwaFtaFtbePbeQaFwbeRaRoaxIaxJbeSaxJaxJbeTaDcaDdaDeaDfaAnaugavOavPavQavqaXTaXUaXTaXTaXVaXWaXWaUPaUPaXXaTIaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaVQaGSaaaaVRaVRaXYaXZaYaaXZaXZaYbaVRaYcaYcaYcaYdaYeaYfaYcaYgaZaaYcaYcaYcaYcaYccAkbdiaaaaagaUgaYnaYnaYnaUgaagaagaagaYoaYpaHSaYqaYraagaagaagaoTaagaagaagaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaPGaVdaYtaYuaYvaaAaYwaYxaIxaTlaYyaaAaYzaTnaTnaYAaYBaXyaTnaXzaXzaYCaPMaPMaWxaPMaPMaPMaaQamBaaaaYDaYEaYFaYEaYGaeNapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHahcahcatkbeDaFwaFwaFwbeVaFwaFwaXSaVFaxcbeYbfOavnavnbfPaAnaDXaDYaDZaAnaugavOawuavQaxMaXTaYPaYQaYRaXVaXVaYSaUPaYTaYUaTIaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaAOaDjaVQaDnaAOaVRaYVaYWaYXaYXaYYaYaaXZaVRaYZaYcaYcaYcaYcaYcaYccAlaYjaZAaUWaUWaUWaUWaUWbdiaaaaUgaUgaFRaFRaFRaUgaUgaaaaaaaaaaGTaJlaZbaaaaaaaaaaaaahkaaaaaaaaaaVdaagaagaagaagaagaagaagaagaagaagaagaVdaFRaZdaYvaaAaZeaZfaBnaTlaZgaZhaLvaZiaZjaZkaZlaZmaZjcAmaXzaXzaXzaXzaXzaZnaZoaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaagvahcahcatkaucbfQaFwbfVbfSbfYbfVaXSaVFaxcbeYbfOaIoavnbfPaAnaEKaELaEMaAnaugavOaxdavQavqaXTaZyaZzaZzbhpaXVaZBaZCaZDaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaEOaZEaZFaZGbfZbgaaZJaZKaZLaZMaXZaZNaZOaZPaZQaZRaZRaZRaZRaZRaZSaZRaZTaZUbpdbhqcAocAncApbdiaaaaaaaYnaZVaFRaZWaFRaFRaUgaUgaUgaUgaUgaZXaZYaUgaUgaUgaaaahkaaaaaaaaaaVdaagaYsaYsaYsaYsaYsaYsaYsaYsaYsaagaVdaFRaZdaYvaaAaZZaLvaBnaTlbaaaddaddbabbacbadaZlaZmbaeaXzaXzbafbafaXzaXzbagaZoaZpaaQamBaaaaaacArcAqcAqcAqcAsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaafHanXahcatkaucbgbaFwbgdbgcbgXbgVbhbbhaaxIbhOaxJaxJaxJbhPaFAaBjaFBaBjaAnaugasSaxLauhavqaXTbavbawbaxbayaXVaXVaXVaTIaTIaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaaaaaaaEOaVQaHVaHPaHOaHOaVRbazaYabaAbaBbaBbaCbaDbaEbaEbaEbaEbaEbaEbaEbaEbaFbaGbaHaXbcAucAtcAvbdiaaaaaaaYnaFRbaIbaJbaKbaLbaMbaNbaLbaObaPaHSaYvaFRbaQaUgbaRbaSbaTaUgaYnaVdaagaYsbaUbaVbaWbaXbaYbaZbbabbbbbcbbbbbebbfcAwaaAaWqbbhbbiaTlbaaaddaddbbjaZjcAxaZlbbkaZjaXzaXzbafbafaXzaXzbblaZoaZpaaQamBaaacAycAAcAzcAzcAzcAAcABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaabjVbjVbjVafHafHafHatkaucbhSbhQbhVbhTbhTbhTbjcbjabjfbjebjgbjgbkbbjhbkcbkcbkebkdbkfaxCasSasSauhbbwbbxbbybbzaZzaZzbbAaZzbbBbdiaaaaaaaaaaaaaaaaaaalUaxPaeMaaaaaaaaaaaaaaaaEOaVQaGSaagaaaaaaaVRaVRbbCaXZaYaaXZbbDaYbbaEbbEblqbbGbbHbbIbbJbaEbbKbgnbinbqLcADcACcAEbdiaaaaaaaYnaFRbbLbbMbbNbbNbbNbbNbbObbPbbQbbRbbSbbTbbMbbUbbVbbWbbXbbUbbYaVdaagaYsbbZbcabbZbcbbccbccbccbcdbccbccbcfbcgbchbciaWqbcjavPbckbaaaddaddbbjbclaZkaZlbcmaZjbcnaXzbafbafaXzaXzbcoaZoaZpaaQamBaaacAFcAHcAGcAGcAGcAJcAIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagbjVblrblsbcsbctbcpbcvbmxbmzbmybmBbmAbmAbmCbmDaLhbnLaLeboIcAKboKboJboLaNAaNAbpfbkfaxCasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaaaaalUaxPaoiaaaaaabcObcPbcPbcPbcObcQaiDaagaaaaaaaaaaVRaVRbcRbcSbcTaVRaVRbaEbcUbpgbcWbcXbcYbcZbdabdbbdcbaHaUWaVdaVdbdibdiaaaaaaaUgaUgaZdaYvaFRaUgaUgaUgbddbdebdfbdebdgbdebdhaUgahLaHWahLaUgaVfaVdaagaYsbbZbbZbbZbdjbdkbdlbdmaSIaUKaSIbdpbdqcALaaAbdsbcjawubckbdtayqbdubdvbdwbdxbdybdzbdAbdBaXzaXzaXzaXzbdCaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbdEbdEbdEbcpbdFbdFbdFbdGbcpbphbdMbdObdMbdNbnNaudaudbpiaynbpSaxbaudauecANcAOaueaAmaueaueauebhcasSasSauhbcJbdWbcKbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaaaaalUaxPaoiaaabcObcPbcObdXbdYbdZbcObeabcOaagaaaaaaaaaaaaaVRaVRaVRaVRaVRaaabaEbebbqjbedbeebefbegbehbeibejbaHaUWbekaVdaVdaaaaaaaaaaaaaUgaZdaZYaUgaUgaaaaUgaUgaYnaUgaUgaUgaYnaUgaUgaaaahkaaaaYnaVfaVdaagaYsaYsaYsaYsaYsaYsaYsaYsaYsaagaVdaFRaZdaYvaaAbembcjaxdbckbaaaddbenbeobclbepbeqberaZjbesaXzbafaXzbetbeubeubeubevbeubeubewcAPcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbdEbcpbexbeybezbcpbeAbcpbdFbdFbeBbeCbdMbqxbeMbqybnNbqAbqzbrAbqBbrCbrBaudbrDaJIbrNbrQaJfbsHbrRaueaugasSbttbeWbeXbtCbeZbcLaZzbdWbcMbcLaZzaTwaaaaaaaaaalUaxPaoiaaabcObcObfacAQbfcbfdbfecARbffbcObcOaaaaaaaaaaaaaaaaagaagaaaaaaaaabaEbfgbtDbfibbGbfjbfkbaEbflbfmbfnbfobfpbfqbfrbfrbfrbfrbfrbaMbfsbftaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahkaaaaYnaVfaVdaagaagaagaagaagaagaagaagaagaagaagaVdaFRaZdaYvaaAaWqbfubfvbfwbfxaAubfybfzbfAbfBbfCbfDaZjbfEaXzbfFbfGaXzaXzaXzaZobfHbfIbfJbfHcAScAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcpbcpbfKbfLbfKbfMbfLbfKbfLbcpbcpbcpbfNaJEbtIbqxbfWbfXbnNbtJaxDayMaxDbtLbtKaudaXSaxcaKXayPayQayRbtMaueaugasSbgeauhbcJbdWbcMbcLaZzbdWbcMbcLaZzaTwaaaaaaalUaxPaeMaaabcObcObfebgfbfbbfbbggbfbbfbbghbgibcObcOaaaaaaaaaaaaaaaaagaagaaaaaabaEbgjbgkbglbgjbgjbgjbaEbgmbgnbgobgpbgqbbNbbNbbNbbNbbNbgrbbNbgsbgtaUgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUapLaaaaYnaVfaVdaVdaYnaYnaYnaYnaYnaYnaYnaYnaYnaVdaVdaFRaZdaYvaaAbgubgvbgwbgxbgybgzbgAbgBbgCbgDbgEbgFaZjaXzbgGbgHbgIbgJbgJbgJcATbgLbgMaZpbgNcAMcAUcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbcpbgObgPbgQbgPbgObgQbgPbgQbgObcpbgRatkaucbdObqxbfWbgYbnNbuzaxDayMaxDbtLbvaaxbaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbvcaZzaZzaZzaZzbvgaiDaaaalUaxPaoiaaaaaabcPbhdbfebhebgibhfbfebhgbhhbghbhibhjbcPaaaaaaaaaaaaaaaaaaaagaagaaabaEbhkbfhbhlbhmbhnbhobaEbgmbaGbaHbhrbhrbhrbhrbhrbhrbhrbhrbhsaUeaVfaUgaUgaUgaaaaaaaaaaaaaaaaaaaaaaaaalUaxPaoiaaaaiDbhtbbYaFRaFRaFRaFRaFRaFRaFRaFRbhuaFRbhvbhwaFRaZdbhxaaAaAsaBnaBnaTlbhyayqayqbhzbhAbhBbhCbhDbhEbgJbhFbhGbhHaXzbhIaXzaZobfHbhJbfJbfHcAVcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagbdEbhLbfKbhMbhNbgObhMbhNbfLbgObcpbgRatkaucbdObqxbfWbhRbnNbvhaxDayMaxDbtLbvUbwtaXSaxcaKXavnavnavnavnbvbaxCasSbgeauhbcJbdWbcMbcLaZzaZzaZzaXTaXTaiDalUaxPaoibcObcObcObcObhYbhZbfebfebfebiabibbfebicbidbiebifbifbigbifbihaaaaaaaaaaagaagbaEbiibecbijbikbilbimbaEbaFbgnbinbiobipbiqbirbisbitbiubhraagaUeaVfaUgbivaUgaUgaUgaaaaaaaaaaaaaaaalUaxPaoiaaaaaaaiDbiwbixbiybiybiybiybiybiybbNbbNbbNbbNbbNbbNbbNbizbiAaaAaAsaBnaBnaTlbiBbiCbabbiDbiEbiFbiGbiHbiIbiJbiKbiLaXzbiMbiNbiNbiNbiObiNbiNbiPcAWcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagbdEbiQbgPbiRbiSbiTbiUbiVbiWbgObcpbcpawpaucbdObqxbjdbhRbnNbwvbwubwCaxDbwDbvaaxbaXSbwIaKXbxSbxSbxSbyGaueaxCasSbjkbjlbjmbjnbjnbjoaZzaZzbbBaXTbzAalUaxPaoibcObcObjpbjqbjrbjsbjsbjtbjubjsbjvbjvbjsbjsbjsbjsbjwbjsbjsbjxbjyaaaaaaaaaaaaaagbaEbjzbfhbhlbimbimbimbaEbgmbaGbaHbhrbjAbjBbjBbjCbitbjDbhraagbjEaVfaUgaUgaUgbjFaUgaUgaaaaaaaaaalUaxPaoibjGbjHbjHbjGbjIbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGbjGaZdbjJaaAaAsaBnaBnaTlbjKcAXbjLbjLbjLbjLbjMbjNbjObjPbjQbjRcAYbjTaXzaXzaZoaZpaZpaZpbdDcAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabdEbhLbfKbhMbhNbjWbhMbhNbjXbgObjYbjZawpaucbdObqxbhRbhRbnNaudbzLaxDaxDbqBbzSaynaXSbzVbzUauLauLauLauLaueaxCasSbkiauhbkjaXTbkkbkkbklbkmbcMaXTaaabknaoiaaabcObjpbkobkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkpbkqbkqbkqbkrbksaaaaaaaaaaaaaaabaEbaEbktbkubaEbkvbkwbaEbflbkxbkybkzbkAbkBbkCbkDbitbkEbhraagaUeaVfaUgbkFbkGbkHbkIaUgaUgaaaaaabknaoiaaabjGbkJbkKbkLbkLbkMbkMbkNbkObkPbkPbkPbjGbkQbkRbjGbkQbkRbjGaZdbkSaaAaAsaBnbfubkTbkUbkVbkWbkXbkYbkZblablbblcbldbleblfblgblgblgblgblgblgaaQamBaaacAMcAGcAGcAGcAGcAGcAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUblhbliblhbjVbjVbjVbljbgPbiRbiSblkbllblmblnblobcpblpawpaucbdObqxbhRbhRbFbaudbFkaxDaxDaxDbFlayOaXSbFmavnavnavnavnavnbvbaxCasSbkiauhbGlaXTaXTaXTaXTaXTaXTaiDbluaFUblvbcObcObkrbkpbkpblwblxblyblzblAblBblCblDblEblFblGblwblHblIbkqbkrbjyaaaaaaaaaaaaaaabaEblJblKblLbaEbaEbaEbaEblMbaGbaHblNblNblNblNblNblNblNblNaagbjEaVfaUgbkFaFRaFRaFRblOaYnaaaaaaahkaaaaaabjGblPblQbkLbkLblRblRblRblRblRblRblRbjGblSblTbjGblSblTbjGaZdaYvaaAaDraBnbbhblUblVblWblXblYblYblZbmabmabmbbldbjQbmcbmdbmebmfbjSbmgaZpaaQamBaaacAZcBacBacBacBacBacBbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbmhbmibmhbmjbmkbmlbmmbmnbmobmpbmobmqbmrbmobmsbmtbmubmvbfNbmwbdObqxbhRbhRbGmaudbGnbGIaxDbtKbrBaxbbHwaNAaNAbIraNAaNAaNAbIJaxCasSbmEbeWbmFbmGbmHbmHbmIbmJbjsbmKbmLbmMbmNbmKbjsbmObkpblwbmPbmQbmRbmSaVbbmUbmVbmWbmXbmYbmZbnabnbbncbkqbkrbndbnebnebnebnebnebaEbnfbngbnhbnibnjbnkbaEbgmbaGbaHblNbnlbnmbnnbnnbnnbnoblNaagaUeaVfaUgaUgaUgbnpaUgaUgaUgaaaaaaahkaaaaaabjHbnqblRbkLbnrbjGbjGbnsbnsblRbnsbnsbjGcBcbjGbjGcBdbjGbjGaZdaYvaaAaAsaBnaBnbnvbnwblWcBebmabmacBfbmabmacBgbldbnAbnBbnCbjSbnDbmgbnEaZpaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabnFbnGbmjbmjbnHbmjbmjbnIbjVbjVbjVbjVbjVbjVbjVbcpbnJbnKbcpbcpbfNbIKbdObhRbhRbhRbILaudbJMaBdaBdaBdbJNaudbnObnObnObnObnObnObnObnOayTasSbkiauhavqalIbnPbnPbnQbnRbcObcOahLaHWahLbcObcObkrbkpbnSbmPbnTbnUbnVbkpbnWbnXbnYblwbnZblwboabobbocbkqbodbeaboebofboebogbnebaEbbGbbGbohboibojbokbaEbflbolbfnbombonboobopboqborbosblNaUgaUebotbbNbbNbbNbbNbbNbbYaYnaagaagaoSaagaagbjGboubovbkLbkLbowboxblRblRblRblRblRblRblRboybozblRboAbjGaZdaYvaaAcBhaBnaBnboBboCboDcBibmabmacBjbmabmacBkbldboHbjSbjSbjSblgblgblgblgaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboMboMboMboNboOboPboQboRboSboTboUboVboWboXboYboZbpabpbbfNbpcbdObdObJObdObdOaudaudawrawrawqawraudbpjbpkbplbplbplbpmbpkbnOaugasSbkibpnbpobppbpqbpqbprbpqbpqaaaaaaahkaaaaaabcObpsbkpbptblwblwbnXbpubkpbpvbpwbpxblwbpyblwbpzbpAbpBbkqbpCbpDbpEbpEbpFbpEbpEbaEbpGbpHbpIboibpJbpKbaEbgmbgnbinbpLbpMbpNbpObpPbpQbpRblNbzeaYtbaLbpTbaLbaLbaLbaObpUaUgaaaaaaahkaaaaaabjGbpVbpWbkLbpXbpYbpYbpYbpYbpYbpYbpYbpYbpZbqabpYbpYbqbbqcbqdaYvaaAcBlaBnbqebqfbqgboDcBibmabmacBjbmabmacBmbldbmgbmgbjSbjSblgbuVbtrbtsbuWbuWbxMaVcaWmaWmaWnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUboNboNboNbjVbjVbjVbqnbqnbqobqpbqqbqrbqsbqtbqubqvbqwbfNbpcbwBbwBbwBbJQbJPaudauIauIauIauIauIaudbqCbqDbqEbqFbqFbqFbqGbqHbqIbqJbqKaHMaHNbppbumbqMbqNbqObpqaaaalUbqPanuaaabcObqQbqRbqRbqRbqRbqSaXlbqRbpvbqUbqVbqWbqXbqWbqYbqZbrabkqbpCbpDbrbbrcbrdbrebrfbaEbaEbaEbaEbaEbrgbrhbrhbribKXbKWblNbnnbrjbrkbrlbpQbnnblNbrmbrmbrmbrmbrmbrmbrmbrnbrobrpaaaalUbqPanuaaabjGbrqbovbkLbrrbrsbrsbrsbrsbrsbrsbrsbrsbrsbrtbrsbrsbrubrvbrwbdhaaAcBnaBnbrxbrybrzboDcBibmabmacBjbmabmacBmbldblgblgblgblgblgbuVbtrbzqbzrbzrbzqaXmbbdaZcbceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjUbjUbjUbjVbjVaaabjUbqnbrIbrJbrKbqnbjVbrLbrMbKYbrObrPbfNbpcbwBbwBbwBbwBbJPaudauIauIavjauIavkaudbrTbpkbrUbrVbpkbpkbrWbnOaugasSbrXaHMbrYbppbrZbrZbsabrZbpqcBobsbbscbsdbsebcObpsbqRbsfbsgbshbsibsjbqRbskbslbsmbsmbsnbsmbsobsmbspbsqbsrbssbstbsubsvbswbsxbsybszbsAbsBcBpbsDbsEbsFbsGbKZbsIblNbsJbsKbsLbsMbsNbsOblNbsPbsQbsRbsSbsTbsUbsVbsWbsXbrpbsYbsbbscbsdbsebjGbjGbjGbjGbjGbjGbjGblRbkLbsZbtablRblRblRbtbbtcbtdbtebjGbtfbivaaAaAsaBnaBnbtgbthbjLcBibmabmacBjbticBqcBrbldbtlbtmbtnbtobtpbtqbtrbtsbuWbuWbLabdnaWmaWmbdoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbtwbtxbtybtzbjVbtAbtBbgObtBbLcbLbcBsbtGbtGbtHbwBbJPaudauIauIauIauIauIaudbtNbtNbtObtPbtNbtNbtNbnOaugasSbgeaJhaJibppbtQbtRbtSbtTbpqbtUbtVaaQbtWbtXbcObqQbqRbtYbtZbuabubbucbqRbudbuebuebufbugbuhbuibuebujbukbulbGkbunbuobupbuqburbusburbutbuubuvbuwbuxbpEbuybuAbuAblNbuBbuCbnnbnnbnnbuDblNbsQbsQbsQbsQbuEbuFbuFbuGbuHbrpbtUbtVaaQbtWbtXbjGblRbuIbuIblRblRbuJblRbkLbuKbuLbuMbuNbuObjGbjGbjGbjGbjGbtfaFRaaAaAsaBnaBnaTlaTmbjLbuPbuQbuPbuRbuPbuPbuSbuTbuUbuVbLdbLCbLebuVbtrbuWaaQamBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjVbjVbuXbuYbqnbjVbuZbtBbgObLDbLFbLEcBtbvebvfbMAbMBbExaudaudaudaudaudaudaudbvibpkbvjbvkbvlbvmbvnbnOaEaasSbgeaJKbvobppbtQbvpbvqbvrbpqcBucBwcBvcBycBxbcObkrbqRbvxbvybvzbvAbvBbqRblwbvCbvCbvDbvEbvDbvCbvCbvFbkqbvGbpEbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbpEbvTbvVbvVbvWbvXbvYbvZbpQbnnbwablNbsQbwbbwcbwdbwebwfbwgbwhbwibrpcBucBwcBvcBycBxbjGbwjbwkbwlbovblRcBzblRbkLbuKbwnblRblRbwobjGbwpaFRaFRbnpbtfaFRaaAaAsaBnaBnaTlaTmbjLbjLbjLbjLbjLbjLbjLbjLcAXbwqbwrbMCbMUbMTbwsbtrbuWaaQamBaaabwwbwxbwxbwxbrHbwxbwxbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFaaFaaFaaPbjVbjVbjVbwzbjVbiTbwAbOgbOfbPnbOhcBAbwFbwGbwHbxWbwJbwKbwLbwMbwKbwNbwObnObwPbpkbwQbwRbwSbpkbwTbnOaugasSbgeauhavqbppbtQbwUbtQbwVbpqbwWbwXbwYbwZbxabcObkrbqRbxbbxbbxcbxbbxdbqRbnSbvCbvCbxebxfbxgbvCbvCblwbkqbxhbpEbpEbxibpEbpEbpEbxjbxkbxlbpEbxmbvQbxnbpEbuybuAbuAbvWbxobnnbxpbsNbnnbnnblNbsQbsQbsQbsQbxqbxrbxrbxsbxtbrpcBBbwXbwYbwZbxvbjGbwjbxwbxxbovblRcBzblRbkLbuKbxybxzblRbxAbjGbaQaFRbxBaUgbtfaFRaaAbxCaBnaBnaTlbxDbxEbxFbxFbxFbxFbxFbxHbxFbxFbxIbxJbPKbQNbPMbxKbxLbuWbuWbuWbxMbxNbxObxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeNahLahLahLahLahLahLcBCbjVbjVbdEbdEbcpbxTbxTbxTbxTbxTcBDbxVbQPbxTbwKbwKbwKbwKbwKbxXbnObxYbxZbyabybbycbydbyebnOaugasSbgeauhavqbppbyfbrZbygbyhbpqbyibyjbykbylcBEbcObkrbqRbynbyobypbyqbyrbqRbysblwblwblwblwbytblwblwbysbkqbyubpEbyvbywbyxbyybyzbyAbyAbyBbpEbyCbyDbyEbpEbyFbyHbyHbvWbyIbyJbyKbyLbnnbnnblNbyMbsQbyNbyObyPbyQbyRbySbyTbrpcBFbyjbykbylbyVbjGbyWbyXbyYblRblRbuJblRbkLbuKbyZbzabzbbzcbjGbaQbzdbzeaUgbtfbhuaaAaDraBnaBnbzfbzgbzhbzibzicBGbzkbzlbzkbzkbzkbzmbznbzibzibzibzobzpbzqbzrbzrbzqbzsbztbztbztbQQbztbztbztbxNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBIcBHcBJbzuaaaaaaabWaaQbzvcBDbxVbxWbxTbzwbzwbzwbzwbzwbzwbnObnObnObzxbzybnObnObnObRraugasSbgeauhavqbRzbzzbRAbzBbRAbzzbzCbzDbzEbzFbzGbzHbzIbqRbqRbzJbzKbzJbqRbqRbRBbRBbRBbRBbzMbRBbRBbRBbRBbkqbzNbpEbzObzPbzQbzQbzQbzQbzQbzRbpEbpEbpEbpEbRCbzTbRDbRDbSFblNblNblNblNblNblNblNbzWbzXbzWbrmbrmbrmbzWbzYbzZbrpbzCbzDbzEcBKbAbbjGbjGbjGbjGbjGbjGbjGbuJbAcbAdbuJbjGbjGbjGbjGbAebAebAebAebAfbAebSGaAsaBnaBnaBnbAgbAhbAhbAhbAibAjbAkbAhbAhbuVbwqbAlbAmbAmbAnbAobzpbuWbuWbuWbLabxNbApbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBMcBLcBNcBNcBLcBOcBQcBPaaaaaaabWaaQbzvcBRbArbAsbAtbAubAubAubAubAubAubAvbAwbAwbAxbAybAzbAAbAAbABaTGasSbgeauhbACatAbADbAEbAFbAGbAHbAIbAJbAIbAIbAIbAHbAHbAHbAKbAGbALbAEbAMbANbAEbAEbAEbAEbAEbAEbAEbAEbAEbANbAObANbANbANbAPbANbANbANbANbANbANbANbANbANbAPbAQbARbARbASbARbARbATbAUbAVbAWbAXbANbANbANbAYbANbANbANbAZbBabAHbAIbBbbBcbBdbBcbANbANbANbANbANbANbANbANbANbAObANbANbANbBebBfbBgbAWbAXbANbBhbADbBibBjaBnaBnaBnbBkbBlbBmbAhbBnbBobBpbBqbBrbBsbBtbBubBvbBwbBxbAobzpbuWaaQamBaaabBybwxbwxbwxbrHbwxbwxbwxbBzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzucBMcBLcBNcBLcBTcBScBVcBUcBXcBWcBQcBPaaaaaaabWaaQbzvcBDbBAbBBbBBbBBbBBbBBbBBbBBbBBbBCbBBbBBbBBbBDbBEbBEbBEbBFaSDaSDbBGbBHaSDbBIbBJbBKbBKbBKbBKbBKayqbBKbBKbBKbBKbBKbBKbBLbBMbBMbBMbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBNbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBObBPbBQbBRbBSbBTbBUbBKbBVbBWbBXbBYbBZbBKbBKbBKbBKbBKbBKbBKbCabCbbCbbCbbCcbCcbCdbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBNbBKbBKbBKbBVbBWbBWbBYbBZbBKbCebBJbCfayqaLvaBnaBnbBkbBlbCgbAhbChbuVbCibCjbAhbuVbwqbBubBubBwbBxbAobzpbuWaaQamBaaabwwbwxbwxbwxbrHbwxbwxbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHvcBLcBLcBLcBNcBLcBNcBZcBYcCbcCacBWcCccCecCdcCfcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbwBbwBbwBbwBbwBbwBbClbwBbwBbwBbwBbwBbwBbwBbxTbCmasSbCnbeUbeUbCobCpbCqbCrbCrbCrbCrbCrbCrbCrbCrbCrbCrbCrbCsbCtbCubCvbCwbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbCxbBcbBcbBcbBcbCybBcbBcbBcbBcbBcbBcbBcbCzbCAbCBbCCbCDbCEbCFbBcbBcbBcbCGbCxbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbBcbCHbCtbCubCvbCwbBcbBcbBcbBcbBcbBcbBcbBcbBcbCxbBcbBcbBcbBcbBcbCybCxbBcbBcbCIbCpbCJbCKauqbgwbCLbBkbBlbBmbAhbCMbCNbCObCPbAhbCQbwqbCRbBubBwbBxbAobzpbuWbuWbuWbxMbxNbCSbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSZcCgbZGcCbcCacChcCbcCacChcCbcCacBWcCicCecCdcCfcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbwBbwBbwBbwBbwBbwBbClbwBbwBbwBbwBbwBbwBbCTbBFaSDaSDbCUaSDaSDbBIbBJbCVbCWbCWbCXbCYbBKbBKbBKbBKbBKbBKbBKbBKbCZbCZbCZbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbDabBKbBKbCVbCWbDbbCXbCYbBKbBKbBKbBKbBKbBKbBKbBKbBKbDcbBKbBKbBKbBKbBKbBKbDdbBKbBKbBKbBKbBKbBKbBKbBKbDebBKbBKbDfbCZbCZbCZbBKbBKbBKbBKbBKbBKbBKbBKbBKbBKbDgbBKbBKbBKbBKbBKbDhbDdbBKbBKbBKbBJbCfayqbDiaLvbDjbDkbAhbAhbAhbDlbDmbAibAhbAhbuVbwqbDnbDobDnbAnbAobzpbzqbzrbzrbzqbzsbztbztbztbztbztbztbztbxNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbhcCgbZGcCbcCacChcCbcCacChcCbcCacBWcCkcCecCdcCfcClcBHcBJbDpbzvbzvbzvbzvcBRbDqbDrbwBbDsbDtbDubDvbDwbDwbDxbDtbDybDtbDtbDzbDtbDAbDBbDCbDDbDEbDFbDFbDGbDHbDIbDJbDKbDLbDMbCWbDNbCWbCWbCWbDObDPbBKbBKbBKbBKbBKbDQbDObCWbCWbCWbCWbCWbDNbDObCWbCWbCWbDRbDSbDTbDUbDVbDLbDWbCWbCWbDObCWbCWbCWbCWbCYbBKbDXbCWbCWbCWbCWbCWbCWbCWbCWbCWbCWbCWbDYbDYbDYbDZbBNbBKbBKbBNbCWbCWbCWbCWbDObCWbCWbCWbCWbDNbCWbCWbDObCWbCWbCWbCWbCWbCWbDbbCWbDObCWbCWbDHbEabEbbEcbEdbEecdObEfbEgbEgbEhbEibEibEjbEibEibEkbElbxFbxFbxFbEmbEnbuWbuWbuWbLabxNbApbxPbxQbxPbxQbxPbxQbxRbQOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSZcpXbZGcCbcCacChcCbcCacChcCbcCacBWcCmcCocCncCqcCpcCbcCpbEobEpbEpbEpbEocBDbCkbwBbwBbEqbxTbErbEsbEsbEtbEubEsbEsbEvbEwbExbEybEzbEAbEBbEybppbppbppbppbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbzzbECbBcbBcbBcbEDbAIbEEbEFbEGbEHcCrbEJbEJbEKbELbEMbENbENbEObENbENbENbENbENbENbENbENbENbENbENbENbSHbEPbEQbERbSIbESbESbETbETbETbESbETbETbETbETbESbEUbEUbESbEVbBcbBcbCxbEWbEXbEXbEYbEXbEXbEXbEYbEXbEXbEXbEYbEXbLfbLfbLfbLfbLfbLfbRIbLfbLfbLfbLfbLfbLfbLfcCsbFcbDjaddbFdbuVbuVbFebFfbuVbwqbuVbFgbzibzibFhbFibzibFjbzpbuWaaQamBaaabBybwxbwxbwxbrHbwxbwxbwxbBzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacDTcEscBOcCbcCacChcCbcCacChcCbcCacCtcBLcCvcCucBLcCwcBNcBHbDpbzvbzvbzvcCxcBDbCkbwBbwBbFnbxTbFobEsbFpbFqbFrbFsbFtbEvbFubFvbEybFwbFxbFybEybFzbFAbFBbFCbFzbFDbFEbFFbFGbFHbFIbFJbFJbFJbFKbEybFLbBcbBcbBcbFMbFNbFObEKbFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGabGbbGabGabGabGabGabGabGabGabGabGcbENbEPbEQbERbESbGdbGebGebGebGfbGgbGebGhbGibGjbGebGebGebESbCxbBcbBcbCxbHubTcbSWbSWbTdbTcbSWbSWbSWbTcbTdbSWbSWbLfcCzcCycCBcCAcCDcCCcCFcCEcCHcCGcCJcCIcCKbLfbGAbDjarucCLbGBbGBbGCbGBbGBbGDbGBbGEbGBbGBcCLbGBbGFbGGbGCbGHbGHbGHbGHbGHaagaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCpcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCMcCbcCbcCNbEobEpbEpbEpbEocBDbTWbTYbTXcCObxTbFobEsbGJbGKbGLbGMcCPbEvbFubGObEybGPbGQbGRbEybFzbGSbGTbFCbFzbFDbGUbGVbGWbGXbGYbGVbGVbGVbGZbEybFLbBcbBcbBcbFMbFNbFObHabHbbHcbHdbHebHfbHgbHhbHibHjbHkbHlbHmbHmbHmbHmbHmbHmbHmbHnbHmbHmbHobHpbENbEPbEQbERbETbGebHqbHrbHrbHrbHrbHrbHrbHrbHrbHsbGebGebHtbCxbBcbBcbCxbHubSWbNSbVkbNSbSWbNSbVkbNSbSWbNSbVkcCQbLfcCScCRcCTcCTcCTcCTcCVcCUcCTcCTcCTcCWcCYcCXbHFbDjarubGBbHGbHHbHIbHJbHKbHLbHMbHNbHObHPbHPbHPbHQbHRbHSbHTbHUbHVbHVbGHbGHbGHaaFaaFaaFaaFaiDaaFaaFaaFbHWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBWcCZcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCpbEobEpbEpbEpbEocBDbWDbWRbWEbFnbxTbFobEsbHXbHYbHZbGMbIabEvbFubIbbEybIcbIdbIebEybFzbIfbIgbFzbFzbFDbIhbGVbIibIjbFIbGVbGVbGVbIkbEybIlbBcbBcbBcbFMbFNbFOcDabInbIobIpbIqbXGbIsbItbHibHmbIubIvbIwbIwbIxbIybIybIxbIwbIzbIwbIwbIAbIBbENbEPbEQbICbIDbIEbIFbIGbIGbIGbIHbIGbIGbIGbIGbIIbGebGebHtbCxbBcbBcbCxbHubNSbYbbSWbYcbNSbYbbSWbYcbNSbYbbSWbYcbLfcDccDbcDecDdcDfbWCcDgbWCcDfcDhcDjcDicDkbLfaAsbDjarubGBbIWbIXbIXbIYbIZbJabJbbJcbGBbGBbJdbJebJfbJgbJhbJhbJibHVbHVbHVbJdbGHbGHahLahLaiDaiDaiDahLahLapJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBMcBLcCwcBLcDlcBLcDmcDocDncDncDpcDmcBLcDqcDqcBLcDmcBNcBHbDpbzvbzvbzvcCxcBDbYdbZmbYQbJjbxTbFobEsbGMbJkbJlbGMbIabEvbJmbdibEybJnbJobJpbEybFDbJqbJrbJsbJsbJsbJsbJtbJubJvbJsbJsbFDbFDbFDbEybJwbJxbJxbJybJzbFNbFObJAbEMbJBcDrbJDbFWbFWbFWbFWbJEbJFbENbENbENbENbENbENbENbENbENbENbENbIAbIBbENbJGbEQbJHbETbGebJIbJJbJKbJJbJJbJJbJJbJJbJJbJLbGebGebHtbCxbBcbBcbCxbHubNSbNSbZZbZnbZnbZnbZncbBciWbNSbNScDsbLfbRIcDtbLfbLfcDubLfbLfbLfcDubLfbLfcDvbRIbLfaAsbDjarubGBbJUbIXbIYbJVbJWbJcbJcbGEbGBbHVbHVbHVbJXbJYbJZbKabKbbKcbHVbKdbKebKfbGHbGHaaaaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDxcDwcDycCbcDzcBWcDBcDAcDAcDCcBWcDDcDEcDEcDEcCpcCbcCpbEobEpbEpbEpbEocBDbCkbwBbwBbKgbxTbFobEsbEsbEsbEsbEsbEvbEvbEybEybKhbKibKjbKkbKkbKkbKlbKmbJsbJtbKnbKobKobKpbKqbKrbJsbKsbKtbKubENbKvbKwbKxbKybENbENbENbENbKzbKAbKBbKCbKDbKEbKEbKFbKGbKHbKIbKGbENaagaagaagaagaagaagaaabKxbIAbIBbENbEPbEQbKJbESbKKbGebKLbKMbKNbKObKPbGebGebGebKQbKRbKSbESbCxbKTbBcbKUbKVcjPciXciXciXciXckKclpcloclqbNSbNScDFbLfbLgbLhbLibLjbLjbLjbLkbLjbLjbLjbLlbLmbLnbLfaAsbDjarubGBbLobIYbJVbJVbLpbLqbLrbLsbLtbLubLvbHVbHVbLwbLxbLybKbbLzbHVbLAbLBbKfbKfbGHaaaaagaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDGcDzcCbcCbcDzcBWcDHcDAcDAcDCcBWcDIcDEcDEcDJcClcBHcDKbDpbzvbzvbzvbzvcBDbCkbwBbwBbFnbxTbFobFDbFzcmjcmlcmkbEybLGbLHbLIbLJbLKbLLbLMbLMbLMbLMbLNbLObJtbLPbLQbJtbJubJtbLRbJsbLSbLTbLUbENbLVbLWbLXbLYbLZbMabMbbMcbMdbMebMfbMgbMfbMfbMfbMhbMfbMibKGbKGbMjaagbMkbMkbMkbMkbMkaagbKxbMlbMmbENbEPbEQbJHbESbMnbHqbHrbHrbHsbMobHrbHrbHsbMpbESbETbESbESbMqbMrbMsbMtbMrbMrbMubMvbMvbMwbMxbMvbMybMzbNSclpcmAbLfbMDbMEbLfbMFbMGbLjbLjbLjbLjbMHbLfbMIbMJbLfaAsbDjarubGBcDLbMLbMLbMLbLrbMMbGBbGBbLwbHVbLubMNbHVbLwbMObMPbMQbHVbHVbKcbHVbHVbKfbGHbGHaagaagaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBNcDNcDMcDOcCbcDzcBWcDQcDPcDAcDCcBWcDIcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbMRbMSbwBcDRbxTbFobFDbFzcmLcmMbFzbMVbLMbMWbMXbMYbMZbNabNbbNcbNcbNdbNebJsbNfbJvbJtbJtbJubJtbNgbJsbNhbLTbNibENbNjbNkbNlbNmbNnbNobNpbNqbNrbNsbNtbNubKGbNvbNwbNxbNwbNybNwbNzbNAbNBbNCbNDbNEbNFbMkaagbKxbIAbMmcDSbEPbEQbNHbESbNIbIFbIGbIGbIIcEtbIGbIGbIIbNKbMrbNLbNMcmNbNObNPbNQbNQbNQbNRbNSbNSbNSbNSbNTbNSbNUbMzbNSclpcDUbLfbNVbNWbLibLjbLjbLjbLjbLjbLjbLjbLlbNXbNYbLfaAsbDjarubGBbNZbOabObbOcbOdbOdbGBbHVbLwbHVbLzbHVbLzbLwbLxbLybKbbLzbHVbLzbHVbLzbKfbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCjcBLcBLcBLcBNcBNcCwcBOcDVcDXcDWcBWcDIcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbOebxTbFobFDbFzcnzcnIcnHbOibOjbOkbOlbOmbOnbOobOpbOqbOrbOrbOrbOrbJtbOsbOtbOubOvbOwbOwbOxbOybOzbOAbENbOBbOCbODbOEbOFbOGbOHbKxbOIbOJbOKbOLbOMbONbKGbOObOPbOQbKGbORbMjaagbOSbOTbNFbOUbMkaagbKxbIAbMmcDYbEPbEQbNHbEUbGebIFbIGbOWbIIbOXbOYbOZbPabPbbPcbPdbPebNQbNQbNQbNQbNQbNQbMrbPfbPgbPhbPibPjbPkbPlbPmcnJclpcmAbLfbPobPpbLfbPqbPqbPqbPqbPqbPqbPqbLfbPrbPsbLfbPtbDjbPubGBbNZbPvbPwbPxbPybPybPzbPAbPBbPCbPDbPDbPDbPEbPFbPGbPHbPDbPDbPDbPIbPJbHVbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzucCjcBNcBLcBLcBTcDZcDEcDEcDJcBWcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbJjbxTbFocnKbFzbFzcnMcnLbPNbPObPObPObPPbPQbPRbOqbOqbPSbPTbPUbOrbJtbOsbPVbPWbPXbJtbPYbJsbPZbQabQbbENbENbENbENbENbENbENbENbENbQcbQdbMfbMfbMibONbQebQfbQgbQhbQibQjbQkbQlbNCbQmbNFbNFbMkaagbKxbIAbMmcEabEPbEQbNHbESbGebIFbIGbIGbIIbQnbQobQobQpbQqcEccEbcEdbQubQvbQubQwbQxbQybMrbMrbMrbMrbMrbMrbMrbQzbQAbEXbEXbEXbLfbQBbPpbLfbQCbQDbQDbQDbQDbQDbQCbLfbPrbQEbLfaddbDjaddbGBbQFbQGbMMbOdbPybPybPzbJXbQHbQIbQHbQHbQHbJYbJZbKabQJbQHbQHbQHbQIbQKbHVbKfbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCjcBLcBNcBNcBLcBZcBQcBPaaaaaaabWaaQbzvcBDbCkbwBbwBbQLbxTbQMcnNbFzcnOcnPcnHbQRbLGbQSbQTbQUbQVbQWbQXbQYbQYbQZbRabRbbRcbRdbOwbOwbRebJtbRfbJsbJsbJsbFDbEyaagaagaagaagaagaagaagbMjbOIbOJbKGbKGbRgbRhbRibKFbRjbRkbRlbKFbMjaagbMkbMkbMkbMkbMkaagbKxbIAbMmbENbEPbEQbJHbESbGebJIbJKbJJbJLbJIbJJbJJbJLcEebRnbRobRpbRqbNNbQubNQbRsbRtbMrbRubRvbRwbRxbRybMrcnQcoecodcogcofbLfbLfbLibLfbREbRFbRFbRFbRFbRFbRGbLfbRHbRIbLfbRJbRKbRJbGBbGBbGBbGBbOdbPybPybGBbHVbHVbHVbLzbHVbLzbLwbLxbLybKbbLzbHVbLzbHVbLzbHVbHVbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacEfcBHcDKbzuaaaaaaabWaaQbzvcBDbCkbwBbwBbRLbxTbRMbFDconcmLbFzconbRNbRObRObRPbOmbGVbRQbOqbRRbRSbRTbRUbRVbRWbRXbJtbJtbJubJtbRYbJsbRZbSabSbbEyaagbMkbMkbMkbMkbMkaagbMjbOIbOJbKGbKGbScbSdbSebKGbSfbSgbShbSibNAbNBbNCbSjbSkbSkbMkaagbKxbIAbIBbENbEPbEQbJHbSlbSmbSnbSobSpbSqbGebGebSrbSsbStbMrbSubSvbSwbPdbPdbPdbSxbSybSzbSAbSBbSCbSDbSEbSzcoIcoKcoJcoMcoLbLfbSKbSLbSLbSMbSNbSNbSNbSNbSNbSObSPbSQbSRbLfbPybSSbPybPybPybPybPybPybPybPybGBbGBbHVbHVbHVbSTbHVbLwbMObSUbMQbHVbHVbHVbSVbHVbHVbGHbGHaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaaFaaFaaFaaFaaFcEgbSXbSXbSXbSYbSYbSXbSXbSXbSXbSXbxTbtEcEubxTbwBbTabxTbTbbFDconcoQbFzcoYbEybOjbOkbOlbOmbTebTfbTgbThbTibTibTjbTkbTlbTmbTnbTobTpbJtbJtbTqbQabTrbTsbEyaagbMkbTtbTtbTubTvbTwbTxbTybTzbKGbKGbRgbKGbRhbKGbTAbTBbONbTCbMjaagbOSbTDbTEbTFbMkaagbKxbIAbIBbENbJGbEQbJHbESbESbESbESbESbESbTGbESbESbESbESbMrbTHbTIbTJbTKbTLbTMbTNbTObTPbTQbTRbTQbTSbTTbTUcoZcpKcpJcpMcpLbLfcEhcEhcEjcEicEkcEkcElcEkcEkcEicEicEmbUgbLfbPybUhbUibUibUjbPybPybPybPybUkbOdbGBbGBbGBbUlbGBbGBbUmbLxbJfbKbbLzbHVbHVbHVbHVbHVbGHaaaaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeNahLahLahLbSXbSXbSXbUnbSXbUobUpbUqbUqbUqbUqbUqbUqbUqbUrbUsbUtbExbExbExbUubUubUvbUubUwbUwbEybFDbFDbFDbUxbUybRQbOqbUzbUAbUBbUCbUDbTlbOsbUEbUFbPXbJtbUGbUHbUHbUHbEybEyaagbMkbUIbUJbUKbOSaagbMjbULbKGbUMbUNbSebUObScbUPbTAbTBbUQbURbQkbQlbNCbUSbSkbSkbMkaagbKxbUTbUUbENbEPbEQbJHbUVbUWbUXbUYbUZbVabVbbUVbVcbVdbVcbMrbMrbMrbMrbMrbMrbMrbMrbMrbMrbVebVfbVgbVhbVibUVbUVbUVbUVbUVbUVbUVbUVbUVbLfbVjbVlbVlbVlbVlbVlbVjbLfbVmbVnbLfbPybVobPybPybPybPybOdbOdbOdbOdbOdbOdbGBbVpbVqbVrbGBbLwbMObVsbVtbHVbHVbMNbHVbHVbGHbGHaaaaaaaadaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVubUnbUnbVvbVwbVxbVybVzbVzbVzbVzbVzbVzbVzbVAbUtbVBbVCbUubVDbVEbVFbVGbVHbVIbEybLGbVJbQTbQUbLMbVKbOqbOqbVLbUBbVMbOrbVNbVObVPbVQbVRbVSbVTbVUbVVbVWbVXbEyaagbMkbTtbVYbVZbWabTwbTxbWbbKGbWcbUNbWdbWebScbUPbTAbTBbONbWfbMjaagbMkbMkbMkbMkbMkaagbKxbIAbIBbENbWgbEQbJHbWhbVbbWibWibVbbWibVbbUVbWjbWkbWlbUVbWmbWnbWobWpbWqbWrbWsbWtbUVbWubMrbWvbWwbWxbUVbWybWzbWAbWBbUVbWzbWAbWBbLfbWCcpNcpObWFbWGbWHbWIbLfbWJbWKbWLbWMbWNbWObPybPybWPbOdbWQbWQbWQbWQbWQbGBcqibWSbWTbGBbWUbMObHVbHVbHVbHVbWVbWWbGHbGHaaaaaaaaaaagaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXcEncEnbUnbUnbSXbVwbWXbSXbWYbWZbWZbWZbXaaaaabWaTwbXbbXcbXdbUubXebXfbXfbXgbXhbXibEybGVbGVbXjbXkbGVbXlbXmbOqbXnbUBbXobOrbXpbXqbKobKobKobKobXrbXsbXtbXubXvbEyaagbMkbMkbMkbMkbMkaagbMjbXwbXxbXybUNbXzbXAbXBbUPbSfbSgbShbXCbNAbNBbNCbXDbXEbXFbMkaagbKxbIAbMmbENbEPbEQbJHbUVbVbbVbbVbbVbbVbbXHbUVbXIbXJbXIbUVbWibWibWibVbbVbbXKbXLbXLbXMbXNbXLbXNbXObXPbUVbXQbXRbXSbXRbUVbXTbXRbXSbLfbWCbWCbWCbWCbWCbWCbWCbLfbXUbXVbXWbXWbXXbXYbPybPybXZbYabWQbWQbWQbWQbWQbGBcqBcqAcqCbGBbLwbYebHVbHVbHVbHVbGHbGHbGHaaaaaaaaaaaaaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbYfcEncEnbUnbYgbSXbVwbWXbSXbYhbYibYjbYkbYhbYlbYlbYlbYmbYnbYobUubYpbYqbYrbYsbYtbYubEybOjbOkbOlbYvbYwbYxbGRbOqbYybUBcEobOrbYzbYAbYAbYAbYBbYBbYCbUHbUHbYDbXvbEyaagbMkbYEbYEbYFbYGbNBbNAbYHbYIbYJbXxbYKbKGbYKbKGbTAbTBbONbYLbMjaagbOSbYMbYNbYObMkaagbKxbIAbMmbYPbEPbEQbJHbYRbYSbYTbYTbYTbYTbYTbYUbYVbYWbYWbYWbYWbYWbYWbYWbYWbYXbYYbYWbYWbYWbYWbYWbYZbZabUVbZbbZcbZdbUVbUVbZbbZebZdbLfbLfbLfbLfbLfbLfbLfbLfbLfbZfbZgbPybPybZhbZibZjbZkbXZbYabWQbWQbWQbWQbWQbOdbOdbOdbOdbGBcqDbGCbGBbGBbGBbGBbGHaaaaaaaaaaaaaaaaagaagaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbZobUnbUnbUnbZpbSXbZqbZrbSXbZsbZtbZtbZubZvbZwbZxbZwbZybZzbUubUubUubUubUubZAbZBbUwbEybFDbFDbFDbEybZCbZDbZEbZFbZFbZFcEvbZFbZHbZIbZHbZJbZHbZHbUHbUHaaabZKbZLbZMaagbMkbYEbZNbZObOSaagbMjbZPbNvbZQbTAbZRbKGbZSbZTbTAbTBbZUbZVbQkbQlbNCbZWbXEbXEbMkaagbKxbIAbMmbZXbEPbZYcqEcaacabcaccadcaecaecaecaecaecaecaecaecaecaecaecaecaecafcagcahcahcahcahcahcaicajcakbYZbYWcalbYWbYWbYZcambZabVbcancaocapcaqbVbbVbbVbbVbcarcascatcaucavcawcaxcaybPycazbWQbWQbWQbWQbWQcazcaAcaBbOdcaCcaDcaEbZlcaFcaGbZlaaaaaaaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbUnbUnbUncaHbUnbUnbSYbVwbWXbSYcaIcEpcaJcaKcaLbYlbYlbYlcaMcaNcaOcaPcaQcaRcaScaTcaUcaVcaWcaXcaYcaZcbacbbcbccbdcbecbfcbgcEwcbicbjcbkcblcbmcbncbocbpaaaaaabZKbZLbZMaagbMkbYEcbqcbrcbsbQlbQkcbtcbucbvbTAcbwcbxcbycbzbTAbTBbONbKGbMjaagbMkbMkbMkbMkbMkaagbKxbIAbMmbENbEPcbAbJHbUVcbCbVbcbDcbEcbFbUVbUVbUVbUVbUVbUVcbGbVbbVbbVbbVbcbHcbIbVbbVbcaqcbJbVbcbKcbLcbMcbNcahcahcahcbMcbNcbOcajbYWbYWcbPbYWbYWbYWbYWbYWbYYcbQbZgcbRcbScbTcbTcbUcbVbXZbYabWQbWQbWQbWQbWQbYacbWcbXbOdcaCcbYcaEbZlcbZcbZbZlbZlaaaaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbUnbUnbUncaHbUnbUnbSYbVwbWXbSYbYhccaccaccbbYhaaaabWbdicccbUubUuccdcceccfccfccfccgcchcciccfccfccjcckcclccmccncbeccoccpccqccrccscctccuccvccwccxcbpaaaccybZKcczbZMaagbMkbMkbMkbMkbMkaagbMjccAbONcbwccBccCbKGbYKbKGbSfbSgbShccDbNAbNBbNCccEccFccFbMkaagbKxbIAbIBbENbEPcbAbJHccGccGccGccGccGccGccGaagaagaagaagbUVbUVbUVbUVbUVbVbcbHcbIbVbccHccHccHccHccHccIccJccKccHccHccHccLbVbccMcbLcbMcahcbLcahcbMcahcahcahcbLccNccOccPccQcbTcbTcbUcbVbXZbYabWQbWQbWQbWQbWQbYaccRcbXbOdcaCcbYcaEccScbZcbZcbZccTaaaaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVvbSXbSXbSXbSXbSXccUccVbSXbZsccWccaccXbYhbYlbYlbUuccYccZcaVcdacdbcdccddcdecdecdfcdgcdecdecdhbUwcdicdjcdkcdlcdmcdncdocdpcbpcdqcdrcdscdtcducbpaaaccycdvbZLbZMaagbMkcdwcdwcdxbYGbNBbNAcdycdzcdAcdBbKGbKGcdCcdDcdEbOQbONcdFbMjaagbOScdGcdHcdIbMkaagbKxbIAbIBbENbJGcbAcdJcdKcdLcdMcdNcExcdPcdKcdQcdQcdQaaabUVcdRcdScdTcdUcdVcdWcdXcdYccHcdZceacebccHceccedceecefcegccHcehbVbceicejcekbVbcelbUVcemcencencenceobOdcepceqcercescescetcbVbPycazbWQbWQbWQbWQbWQcazbPybPybOdcaCcbYcaEbZlcbZcbZcbZccTaaaaagaagaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSYbVwbWXbSYbYhceuccaccacevbZwbZxbZwcewcexceycezceAceBceCceBceDceEceCceFceGceHbUwbUwcbecbeceIcbeceJcbecbpcbpceKceLceMceNceOcbpaaaccycePbZLbZMaagbMkcdwceQceRbOSaagbMjceSbONcbvceTceUceUceUceUcdBbTBceVceWbQkbQlbNCceXccFccFbMkaagceYceZcfaceYbEPcfbcfccfdcfecffcfgcfhcfhcficfjcfkcdQaaabUVcflcfmcfncfocfpcfqcbIcbCccHcfrcfrcfrccHcfscftcfuccHccHbUVbZbcfvcfwcfxbZbcfybZdbUVcfzcfAcfAcfAcEqbOdcfCcfDcfEbPybPybPycbVbXZbYabWQbWQbWQbWQbWQbOdbOdbOdbOdcfFcfGcaEbZlcfHcfIbZlbZlaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSYbVwbWXbSYbYhcfJcfJcfJbYhbYlbYlbUucfKcfLcfMcfNcfOcfPcfQcfNcfOcfRcfQcfNcfOcfSbUwbUwcbecfTcfUcfVcfWcfXcfYcbpcfZcgacgbceNcgccbpaaaccycePcgdbZMaagbMkcdwcgecgfcbsbQlbQkcggcbucbwcghcghcgicgjcgjcgkbOQbONcglbMjaagbMkbMkbMkbMkbMkaagceYcgmcgncgocgpcgqcgrcdKcgscgtcgucfhcgvcdKcgwcgxcdQaaabUVbUVbUVbUVbUVbVbcbHcbIbVbccHcgycgzcgAccHcfscfrcfrcgBcgCbUVcgDcfmcgEbUVcgDcfmcgEbUVcgFcfAcfAcfAcgGbOdcgHcgIcgJcgKcgLcgMcgNbXZbYabWQbWQbWQbWQbWQbOdcfFcgOcgPcgQcgRcgSbZlccTccTbZlaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSXcgTbZrbSXcgUcgVcgVcgVcgWaaaabWbdicgXcgYcgZcgXchachbchccfNchdchechfcfNchgchhchibUwcbechjcfUchkcfWccqcfYcbpcbpcbpcbpcbpcbpcbpaaaccycePchlbZMaagbMkbMkbMkbMkbMkaagbMjbOIchmchnchochochochochochpchqchrchsbENaagaagaagaagaagaagaagceYcErchuchvchvchwchxchychzchAchBcfhchCcdKcfjchDcdQaaabUVcdRcdScdTcdUchEcdWcdXchFccHcfrcfrcfrccHcfscfrcfrccHccHbUVcflcfmchGbUVcflcfmchGbUVchHcfAchIchJchKbOdbOdbOdbOdbOdbOdchLbOdbOdbOdbWQbWQbWQbWQbWQbOdcbYchMchNchOcgSaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUnbSYaaaaaaaaabSXbVwbWXbSXbUtbUtbUtbUtbUtcgXcgXcgXcgXchPchQcgXchRchbchScfNchTchechScfNchUchVchSbUwcbeccqchWccqchXccqccqchYcbeaaaaaaaagaagaaaaaaccycePchZbZMaagaagaagaagaagaagaagbMjciacibciccidciecifcigcihceTciicijcikcilcimaagaagaagaagaagaagceYcinciociocipciqcirciscitciucivciwcixcdKcdQcdQcdQaaabUVcflcfmcfnciycfpcizciAbVbccHcdZcqFcfrciBciCciDcfrciEcgCbUVbUVbUVbUVbUVbUVbUVbUVbUVbZlciFbZlbZlbZlbZlciGciHciIciJciKciLciMciNbOdbOdbOdbOdbOdbOdbOdcbYciObZlbZlaagaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVvbSXbSXaaaaaabSXbVwbWXbSXciPciQciRbSXaaaciSciTciUciVcqGcqHcgXbUwciYcfNcfNcfNciZcfNcfNcfNcjabUwbUwcbecjbccqcjccjdcjeccqcjfcbeaaaccycjgcjgccyccyccycePbZLbZMbZMbZMbZMbZMbZMbZMbZMbENbENcjhcjibENbENbENcjjcjkbJEcjlbENbENbENcjmcjmcjmcjmcjmcjmcjmcjmcjncjncjmcjocjpcjqcjrcjrcjrcjrcjrcjrcjraagaagaagaagbUVbUVbUVbUVbUVcjscjtcjucjvcjwcjwcjwcjwcjwcjwcjwcjwcjwcjwcjwcjxcjycjycjycjycjzcjAcjycjBcjycjCcjycjDcjEcjEcjEcjEcjFcjEcjGcjHcjIcjIcjIcjIcjIcjIcjIcjJcjKcaEbZlaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbUnbUnbUnbSXbSXaaabSXbVwbWXbSXbUnbUncjLbSXaaacjMcjNcjOciVcqZcjQcjRbUwcjScjScjScjScjTcjUcjVchbcjWbUwcjXcbecjYccqcjZckackbccqckccbeaaaccyckdckeccyckfckgckhckickgckgckgckgckjckkcklbZMckmcknckockpckqckrckscktckuckvckwckxckycrpckzckAckBckCckDckEckFckGckGckHcjmckIckJcrqcjrckLckMckMckMckNcjraagaaaaaaaaaccTcbZckOckPckPckQckRckSckTckUckVckWckWckWckWckWckXckYckZbZlclacbZcbZcbZcbZclbclccldcleclfclfclfchOclgclhclgclgclichOchOchOcljcljcljcljcljcljclkchOchOcgSbZlaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYcEncEnbUnbUnbUnbSXbSXbSXbVwbWXbSXcllbUncjLbSXaaaclmclncrrcrtcrsclrclsbUwcjSchbcltcluclvclwclwclxclyclzclAcbecbecbecbecbecbecbecbecbeaagcjgclBclBclCclDclEclFclGclHclHclIclHclJclKclLclMclNclOclPclQclRclSclSclTclSclSclUclVclScruclSclVclWclXclYclZclZclZclZcmacjmckIcmbcmccmdcmecmfcmfcmgcmhcjraagaaacoBcoBcoBcoBcrCcoBcoBcoBcskcsZcsQcmmcmncmocmpcmqcmrcmscmtcmuckPcmvcmwcbZcmxcbZcmycmzclccaEbZlbZlciFbZlbZlctacmBcmCcmDcmEcmFcmGbZlbZlbZlcmHcmHcmIcmJcmKbZlcuncumcumcuqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUncmOcmPbUnbUnbVvbUnbUnbVwcmQbVybVycmRbSXbSXaaacgXcgXcgXcgXcurclrcmSbUwcmTcmUcmVcmWcmXcjScjScmYcmZbUwbUwbUwaaaaagaagaagaagaagaagaagaagccycnacnbccycnccndccycneccyccycnfclBcngcnhcnicnjcnkcnlcnmcnncnoclZcnpcnpcnpcnpcnpcnpcnqcnqcnqcnqcnrcnscntcnucnvcnwcnxcnycjmcvecnAcnBcjrcnCcnDcnEcnFcnGcjraagaaacoBcxIcvgcxKcxJcxMcxLcxOcxNcxQcxPcnRcbZcnScbZcbZcnScbZcaEcnTckZbZlcbZcnUcnVcbZcnWclbclccaEbZlcnVcbZcbZbZlcnXcnYcnZcoacobaaacocaagaaabZlbZlbZlbZlbZlcbZcmKcxScxRcxUcxTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSYbUncohbUnbUnbUnbSXbSXbSXcoicojbUqcokcolcombSXaaaaagaagaagcgXcxVcoocopbUwcoqcoqcorcoscotcoucoucovcowcoxcoxbUwaaaccyccyccyccyccyccyccyccyccyccyccyccycnccndcoycozcoAccycnfclBccyccyccybZMbZMbZMclZclZclZclZcjmcjmcjmcjmcjmcjmcjmcjmcjmcoBcoCcoDcjmcjmcjmcjmcjmcjmcjmcoEcjpcoFcjrcoGcmdcoGcoGcjrcjrcoHcoHcoBcxWcmccmccmccxXcqwcqwcxYcxZcmccoNcoNcoNcoNcoNcoNcoNcoOcoPcoPcoPclfclfcoRcoScoTcoUcoVcoWciFcbZcbZcbZbZlcoXcoXcoXcoXcobaaacocaagaaaaagaaacEyaaabZlbZlbZlcyacumcumcybaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbUnbUnbUnbSXbSXaaabSXbSXbSXbSXcoicpabWXbSXbSYbSYbSXaagcgXcgXcgXcgXbUwcpbcpccpdcdecpecjScjScjScpfcmUcpgbUwaagcjgcphcpiccycpjcpkcpkcpkcpkcpkcpkcpkcyccndcpmcpnclBccycnfclBccycnbclBclBclBbZMcpocpocppcpqcjmcprcprcpscpscpscptcptcpucpvcpwcpxcpycpzcpAcpAcpBcpCcpAcpxcpDcpAcpEcpAcpAcpAcpFcpGcpHcpAcpIcoBcmccydcmccyecyfcrhcrhcygcyhcmccoNcpPcpQcpRcpScpRcpScpRcpTcpUcoNcbZcbZcbZcbZcbZcpVcpWbZlbZlbZlbZlbZlbZlaaaaaaaaaaaaaadaaacoccoccoccoccoccocaaaaaaaagbZlbZlbZlbZlaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSYbSYbSYbSXaaaaaaaaaaaaaaabSXcpYbVwbWXbVvbUncpZbSXaagaagaagaagaagbUwcqacdecqbcqccpecjScjScmUcjScjScqdbUwaagcjgclBcqeccycnccqfcqgcqgcqhcqhcqhcnjcyicqjcqkcozclBccycnfclBccyclBcqlcqlclBbZMcqmcqmcqncqocjmcqpcqqcqqcqqcqqcqrcqqcpucqscqtcqucqvcqwcqwcqwcqwcqwcqwcqxcqycqwcqwcqwcqwcqwcqwcqvcqwcqwcqzcoBcykcyjcylcmccymcmccyocyncyqcypcoNcqIcqJcqKcqJcqKcqJcqKcqJcqLcoNcbZcbZcbZcbZbZlcpVcpWaaaaaaaaaaagaagaagaagaagaagaagaadaaaaaaaagaaaaagaaacocaaaaaaaagaaaaagaaaaadaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbVwbWXbSXcqMcqNbSXbSXbSYbSXbSXcqObUwcqPcqbcqQcqRcpecqScqTcqUcqVcjScqWbUwaagcjgcqXclBccycnccqYccyccyccyccyccybZMcyrbZMbZMbZMcraccycnfclBccyclBcrbcrccrdbZMbZMbZMbZMbZMbZMcrecqqcqqcpscrfcptcptcpucqscrgcrhcricrhcrhcrhcrjcrkcrkcrkcrlcrkcrkcrkcrmcrhcrhcricrhcrncrocoBcvfcvfcytcyscyvcyucytcxNcywcytcoNcrvcrwcrxcrwcrxcrwcrxcrwcrycoNcbZcrzbZlccTbZlcpVcpWaAOaFWaFWaFWaAOaaaaaaaaaaaaaaaaadaaacrAcrAcrAcrAaaacocaaacrAcrAcrAcrAaaaaadaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbVwcmQcrBbSXbSXbSXcyxcrDcrEbSYaagbUwbUwcrFcrFcrFcrFcrFcrFcrFcrFcrFbUwbUwaagccycrGcrHcrIcrJcrKccyaaaaaaaagaaaaEOcrLaGSaaabZMbZMbZMcrMcrNcneclBcoycrOcrdbZMcrPcrQcrRcrSbZMcrTcrTcrTcrTcrTcrTcrTcrUcrVcrWcqwcrXcrYcrZcmccsacoFcoBcsbcoBcsbcoBcoFcsccmccsdcsecmccsfcsgcshcshcsicshcshcsjcshcshcyycslcsmcsncsocspcsqcsrcsscstcsucsvcswcoNbZlccTbZlaaabZlcsxcsycszcszcszcszcsAaGSaaaaaaaaaaaeaadaaacsBcsCcsCcsCcsDcoccsEcsFcsFcsFcsGaaaaadaaeaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXcsHcsIcolcsJcsKbSXcsLbUncsMbSYaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagcqOaagaagcjgclDcsNclEcsOcsPccyaaaaaaaagaaaaEOcrLaGSaaaaaaaaabZMcyzbZMbZMclBclBclBclBcsRclBclBcsScsTbZMcsUcsVcsWcsXcsXcsYcyAcyBctbctccmcctdctectfcmcctgcoBcthctictjctictkcoBctlcmcctmctncmcctocrhcrhcrhcrhcrhcrhcrhcrhcrhctpcrhctqctrctscttctsctuctvcswctwcoNcoNcoNbZlaaaaaaaagbZlcaEbZlaCJaCJaCJctxctyaGSaaaaadaaeaaectzaaactActActActAaaacocaaactActActActAaaaaagaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXcsHctBctCctDbSXbUnbUnbUnbSXaagaagaaaaaactEaaaaaaaaaaaaaagaagaagccyccyccycrGcrJcqfctFccyccyaaaaaaaaaaagaaaaEOcrLaGSaAOaAOaAOaEOctGaGSbZMbZMbZMbZMclBcsRclBclBclBclBbZMctHcsXcsXctIctJctKcyCctLctMctNcmccmccmccmccmcctOctPctQcqqctRcqqctSctPctTcmccmccmccmcctNcmccmccmccmccmccmccmccmccmccmccmcctUcoNctVctWctXctYcoNcoNcoNcoNaaaaaaaaaaaaaagbZlbZlctZbZlbZlaaaaaaaEOctyaGSaaaaadaaaaaaaaaaaaaaaaagaaaaaaaaacocaaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXcsHctBcmQbVycrBbVvbSXbSXbSXaagaaaaaaaaaaaaaaaaaaaaaaagccyccyccyckfckgcuacubctFccyccyaagaagaagaagaagaaaaEOcrLcuccudcuecufcugctGaGSaaaaaaaaabZMbZMbZMbZMbZMcuhclBbZMcuicsXcujcukculcsXcyDcyEcuocupcyFcyHcyGcyIcuscutcoBctQcuucuvcuwctScoBcuxcuycuycuzcuAcuzcuBcuCcuDcuEcuFcuEcuEcuEcuGcuzcuzcuHcoNcoNcoNcoNcoNcoNaagaaaaaaaaaaagaagaagbZlbZlcbZcaEcbZbZlbZlaaaaEOctycuIaaQcuJcuKcrAcrAcrAcrAcrAcrAcrAaaacocaaacrAcrAcrAcrAcrAcrAcrAaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXcsHcojcuLcuMcuNcuNcuObSXbSXbSXbSXbSXbSXccyccyccyccyccycpjcpkcuPclEclFcuQccyccyaaaaaaaaaaaaaaaaagaaaaEOcuRcuScuTcuUcuVcuWcuXcuYcuZcuZcuZcuZcuZcuZcuZcvacvacvacvacrTcvbcsXcvccsXcvdcyJcrTcvfcvfcyKcoBcvhcvicvicvicoBcvjcvkcvlcvmctScoBcvicvicvicvhcoBcvncvfcvfcvocvpcvqcvrcvscvtcvucoBcoBcoBcoNcoNaaaaaaaaaaaaaagaagaagaagaagaaabZlbZlcbZcbZcvvcbZcbZbZlbZlaEOctyaGSaaaaadcvwcvxcsCcsCcsCcsCcsCcsCcsDcoccsEcsFcsFcsFcsFcsFcsFcsGaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSXbSXcsHcojbUqcuLcolcvycvycvycvycvycvzcvAcvAcvAcpkcpkcplcqfcvBcvCccyccyccyaaaaaaaaaaaaaaaaaaaagaaaaEOcvDcvEaCJaCJaCJaCJaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacrTcrTcrTcrTcrTcrTcrTcvFcoBcvGcyLcoBcvHcvIcvJcvIcoHctQcvKcvLcvMctScoHcvIcvIcvIcvNcoBcvOcvPcoBcoBcoBcoBcoBcoBcoBcoBcoBaaaaagaaaaaaaaaaagaagaagaagaagaaaaaaaaaaaaccTcvQcbZbZlbZlbZlcbZcbZbZlaEbctyaGSaaaaadaaQctActActActActActActAaaacocaaactActActActActActActAaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabSXbSYbSXcvRcvScvTcvUcvVcvWcvXcvYcvZcwacqgcqgcqgcwacwbccyccyccyaaaaaaaaaaaeaaeaaeaafaagaagaagaagcwcaagaagaagaagaagaafaaeaaeaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoBcyKcoBcoBcoHcoHcoHcoHcwdcwecwfcwecwgcoHcoHcoHcoHcoBcoBcvncoBcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaccTcbZcbZcwhcwicwhcwjcwkcwlcszcwmaJmaagaadaaaaaaaaaaaaaaaaagaaaaaaaaacwnaaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaabSXbSYbSYbSXbSXbSXbSXbSXcwoccyccyccyccyccyccyccyccyaaaaagaagaagaagaaeaaaaaaaagaaaaagaaaaaacwpaaaaaaaagaaaaagaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcyMcwqcoBcoBcwrcoHcoHcoHcoHcoHcoHcoHcoHcoHcwscoBcoBcwqcyMcoBaagaagaagaagaagaagaagaagaagaagaagaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaccTcbZcbZcbZcwtcwucwvcbZbZlaCJaCJaaaaaaaadaadaaeaadaaacrAcrAcrAcrAaaacwwaaacrAcrAcrAcrAaaaaadaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaagaaaaaacwxcwycwzcwAcwBcwCcwDcwEcwFcwycwxaaaaaaaaaaaaaaaaaaaagaaaaaeaagaaacwGcwGcwGcwGaaacwHaaacwGcwGcwGcwGaaaaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqcwqaaaaagaagaagaagaagaagaagaagaagaagaagaaacwqcwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaabZlbZlcwIcbZcwJcbZcbZbZlbZlaaaaaaaaaaaaaaaaaaaaaaadaaacsBcsCcsCcsCcwKcwLcwKcsFcsFcsFcsGaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaaaaagaagaagcwxcwMcwNcwOcwPcwQcwRcwScwTcwUcwVaagaagaagaagaagaagaagaagaaeaaaaaacwWcwXcwXcwXcwYcwHcwZcxacxacxacxbaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoFcyNcwqcwqaagaagaaaaaaaaaaaaaaaaagaaaaaaaaaaagaagcwqcwqcyNcoFcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZlbZlcbZcbZcbZbZlbZlaaaaaaaaaaaaaaaaaaaaaaaaaafaaactActActActAaaacwwaaactActActActAaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaaacwxcxccxdcxecxfcxgcwRcwScwUcxhcwxaaaaaaaagaaaaaaaaaaadaadaaectzaaacxicxicxicxiaaacwHaaacxicxicxicxiaaaaagaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcyOcxjcxkaagaagcxlaaaaaacxlaaaaagaaaaaacxlaagaagcxmcxncyPcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZlccTccTccTbZlaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaagaaaaagaaaaaacwwaaaaaaaagaaaaagaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxocxocwUcwRcxpcxpcxqcxqcxrcxocxoaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaagaaaaaaaaacwHaaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqaaaaaaaagaagaaaaaaaaaaaaaaaaagaaaaaaaaaaagaagaaaaaacwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaagaagaaacwwaaaaagaagaaeaaeaaeaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxocxscxtcwRcxucxvcxqcxwcxoaagaaaaaaaaaaaaaaaaaaaadaaacwGcwGcwGcwGcwGcwGcwGaaacwHaaacwGcwGcwGcwGcwGcwGcwGaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqaaaaaaaagaagaaaaaaaagaagaagaagaagaaaaaaaagaagaaaaaacwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaagcxxaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagcxocxocxocwUcwScwScxocxocxoaagaaaaaaaaaaaaaaaaaaaadaaacwWcwXcwXcwXcwXcwXcwXcwYcwHcwZcxacxacxacxacxacxacxbaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqaaaaaaaagaagaagaagaagaaEaaFcxyaagaaacxlaagaagaaaaaacwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaagaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxocxzcxAcwxcxoaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaacxicxicxicxicxicxicxiaaacwHaaacxicxicxicxicxicxicxiaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqaaaaaaaagaagaaaaaaaagabWcxBamBaagaaaaaaaagaagaaaaaacwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaagaaaaaaaaacxCaaaaaaaaaaagaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqaagaaaaagaagcxlaaaaagaeNahLapJaagaagaagaagaagaaaaagcwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaeaagaaacwGcwGcwGcwGaaacwcaaacwGcwGcwGcwGaaaaagaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcwqcwqcwqaagaagaagaaaaaaaagaagaagaagaagaaaaaaaagaagaagcwqcwqcwqcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaacwWcwXcwXcwXcxDcxEcxDcxacxacxacxbaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoFcyNcwqaagaagaagaaaaaaaaaaagaaaaaaaaaaaaaaaaagaagaagcwqcyNcoFcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaagaaacxicxicxicxiaaacwcaaacxicxicxicxiaaaaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcyOcxjcxkaagaagcxlaaaaaaaagaaacxlaaaaaacxlaagaagcxmcxncyPcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaagaaaaagaaaaaacwcaaaaaaaagaaaaagaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoBcwqcwqcwqaagaagaagaagaagaagaagaagaagaagaagcwqcwqcwqcoBcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaagaagaaacwcaaaaagaagaaeaaeaaeaafaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoBcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcoBcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaagcxFaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoBcoBcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcwqcoBcoBcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaagaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoBcoBcoBcoBcwqcwqcwqcwqcwqcoBcoBcoBcoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacoFcoBcoBcoBcoBcoBcoFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaacaadaadaadaadaadaacaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaagaahaaiaajaakaakaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaalaagaagaamaagaagaagaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaanaagaagaagaaoaagaapaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqaacaacaacaaraacaacaacaasaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaauaagaavaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaawaagaaxaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaacaacaacaacaacaawaagaaxaazaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaAaagaagaaBaacaawaagaaxaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaAaagaaCaaDaacaawaagaaxaacaacaaEaaFaaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaAaagaagaaHaacaagaagaagaacaagaagaagaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaAaagaagaagaaIaagaagaagaaJaagaagaagaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaAaagaagaagaaKaagaagaagaaLaagaagaaMaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaacaacaacaacaacaacaaNaagaagaacaacaacaacaacaacaaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaOaaOaaPaaQaaRaacaagaagaagaacaaSaaTaaUaaVaaWaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaagaagaagaaCaagaaXaagaagaagaaYaagaaCaagaaCaaZaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbabbabbabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabcaagaagaagaagabdaagaagaagabeaagaagaagaagaagaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabcaagaagabgabhaacabiabjabiaacabkablaagaagaagaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabnaaaabfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaagaagaboaacaacaacabpabqaagaacaacaacaagaagaagaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabbabbabbabbabbabbaaaabraaaabaabbabbabbabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabsabtabuaacaaaaacabvabvabvaacaaaaacabwabxabyaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfaaaaaaabmabmabmaaaaaaabrabmabmaaaabmabmaaaaaaabfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabvabvabvaacaaaaaqabzabAabBaasaaaaacabvabvabvaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaaabCabCabCabCabmabDabmabCabCabCabCaaaabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqabzabAabBaasaaaaaaaaaaaaaaaaaaaaaaaqabzabAabBaasaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabmabmabmabmabmabmabmabmabmabmabmabmabmabmabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabmaaaabEabFabFabFabGabHabIabJabJabJabKaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabmabmabmabmabmabmaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaabmabmabmabmabmabmabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbabmaaaabLabLabLabLabmabHabmabLabLabLabLaaaabmabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaabmaaaaaaabmabMaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabCabCabCabCabCabCabCabmabHabmabCabCabCabCabCabCabCaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabEabFabFabFabFabFabFabGabHabIabJabJabJabJabJabJabKaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabaaaaabLabLabLabLabLabLabLabmabHabmabLabLabLabLabLabLabLaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabaabaaaaaaaaaaaaaaaaaaaaaaabmabmabaaaaaaaaaaaaaaaaabmaaaaaaaaaabHaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaabbabbabOabbabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabaabaaaaaaaaaaaaaaaaabmabmaaaabaabaabbaaaaaaabCabCabCabCabmabPabmabCabCabCabCaaaabmabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaabmaaaabfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmabmaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabaabaaaaaaaaaaabmabmaaaaaaaaaaaaabbabmaaaabEabFabFabFabGabHabIabJabJabJabKaaaabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabmabQabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmabmaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabRabRabRabRabRabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaabmabmabaabaaaaabmabmaaaaaaaaaaaaaaaabbabmaaaabLabLabLabLabmabHabmabLabLabLabLaaaaaaabfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabaabaabaabaabmabmaaaabSaaaabmabmabbabbabbabbabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabmaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabRabRabRabRabRabRabRabRabRabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaabmabmabaabmabmaaaaaaabTaaaaaaaaaabfaaaaaaaaaabmaaaaaaaaaabHaaaaaaabmaaaaaaabmaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaaabmaaaabmaaaaaaabSaaaaaaabmaaaabmaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabRabRabRabRabUabVabWabRabRabRabRabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaabmabmabmaaaabXabYabTaaaaaaaaaabbabmabmabmabmabmaaaaaaabHaaaaaaaaaaaaaaaabmaaaabfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabmaaaabZabZabZabZaaaacaaaaabZabZabZabZaaaabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabmaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabRabRacbaccacdaceacfacgachabRabRabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaabmabmabXabYaciacjabTaaaaaaaaaackaclaclaclaclaclaclaclacmaclaclaclaclacnacoaclabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaaacpacqacqacqacracsactacuacuacuacvaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabRabRacwacxacfacfacfacyacgabRabRabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaabmabmabXaciacjacjacjabTaczacAacBacCacCacCacCacCacCacCacCacCacDacEacEacEacFacGacHacEacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbabmaaaacJacJacJacJaaaacsaaaacJacJacJacJaaaabmabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaacKacLacLabRabRabRabRacfacMacNacOacPacfacfabRabRabRabRacLacLacKaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaabmabmabXaciacjacjacjacjabTacQacRacQacCacSacTacUacVacWacXacYacZacDadaadbadcacFaddadeacIadbacIacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaabmaaaaaaaaaacsaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmacKacKadfadgabRabRabRadhadiacMabRadjabRacfadkadlabRabRabRadmadnacKacKabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmaaaadoacjacjacjacjacjabTacQadpacQacCadqadradsacVadtaduadvadwacDadbadxadyacFadzadAacIadbadBadCacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIacIacEacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabZabZabZabZabZabZabZaaaacsaaaabZabZabZabZabZabZabZaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaacLadDadEadFadGabRabRabRadHadIabRabRabRadJadKabRabRabRadLadMadNadOacLaaaaaaaaaaaaaaaabmaaaaaaabmaaaaaaaaaaaaaaaabmabXaciadPadPadQadQadPadPadRadSadTacCadUadVadWadXadYadZaeaaebacDadxaecadbacFaedaeeacIadbadbadbadbacIabmabmabmabmabmabmabmabmabmabmacIacIaefadbaegacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaacpacqacqacqacqacqacqacracsactacuacuacuacuacuacuacvaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmacLaehadFaeiaejabRabRabRaekaelaemacfadJaenaeoabRabRabRaepaeqaeraesacLaaaaaaaaaaaaaaaabmaaaaaaabmaaaaaaaaaaaaaaaabmadoacjadPaetaeuaeuaeuadPadPaevadPacCaewacVacVacVaexaeyaezaeAacDacIacIaeBacFacGaeCacIadbaeDaeEadbacIaeFaeGaeGaeGaeGaeGaeGaeGaeHacIacIadbadbaeIadbaeJacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaacJacJacJacJacJacJacJaaaacsaaaacJacJacJacJacJacJacJaaaabaaaaabmaaaaaaaaaabmaaaaaaaaaabaabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmacKacKaeKaeLaeMaeNabRabRaeOaePaeQaeRaeSaeoaeTabRabRaeNaeUaeVaeWacKacKabmabmabmabmabmabmabmabmabmabmabmabmabmabmabTabTabTadPaeXaeuaeuaeYadPaeZaeZafaacCafbafcafcafcafdafeaffaduacDafgadbaeBadbadbafhadbadbaeDaeDafiacIafjafkaflaflaflaflaflafmafjacIafnadbacEacEacEadbafoacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaabmaaaaaaaaaacsaaaaaaaaaabmaaaaaaaaaaaaaaaabaabmabmaaaaaaaaaabmaaaaaaaaaabaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKacKafpafqacKabRabRabRafrafsaftafuafvabRabRabRacKafwafpacKacKaaaaaaafxafyafzafzafAafBafBafAafBafBafAafBafBafBafCafBafDafEafFafGaeuafHaeZaeZaeZacCacCafIacVacVacCafJafKacCacDaeBadbaeBafLafMafNafMafMafOafPafPafQafRafSacEacEacEacEacEafTafjacIafnadbacEabmacEadbadbacEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbabmaaaabZabZabZabZaaaacsaaaabZabZabZabZaaaabmabbabaabaaaaabmaaaaaaaaaabmaaaaaaaaaabaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafUafVafWaeNabRabRabRafsafXafuabRabRabRaeNafYafZafUaaaaaaaaaaaaagaagbaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaaaaagcagdadPadPageagfaggaghagiaeZaeZagjacCagkagkagkacCaglagmaeZabTadbadbaeBagnagoagpagqagpagragsagtagsagsaguacEaaaaaaaaaacEafTafjaeBafnadbacEacEacEadbadbacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaaacpacqacqacqacracsactacuacuacuacvaaaaaaabbabmabmaaaabmaaaaaaaaaabmabmabmaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagvagwagxagyagzagzagAagBagCagDagAagzagzagyagEagFagGaaaaaaaaaaaaagHaaaaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaabmabmadoacjagIagJagKagLagMagNaeZaeZaeZagOacVacVacVacVaglagmagPabTaeBaeBaeBagQagRacDacDacDacDacDacDacDacDacDacDagSagSagSacDafTafjagTadxagTadbadbadbadbacIacIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmagUagVagWabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfagXaaaacJacJacJacJaaaacsaaaacJacJacJacJaaaabmabbaaaabmabmagYaaaaaaaaaagYaaaabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKafpagZacKagzahaagAahbahcahdagAaheagzahfagEafpacKaaaaaaaaaaaaagHafxafyafzafAafBafBafBafBafBafAafBafBafAafzahgahhahiahjacjahkahlahmaeZaeZaeZaeZahnahoahpahpahqahrahsahtafMahuafMahvahwacDahxahxahxahyahzahAahBahCahBahDahEahEacDahFahGahHagTahIahJadbadbacIacIabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmahKahLahMabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahNahNahNahNabmaaaabmaaaaaaacsaaaaaaabmaaaabmaaaaaaabbagYahOahOagYabYabYabYagYahOahOagYaaaabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKahPahQacKagzagzagAahRahSahTagAagzagzacKagEahUacKaaaaaaaaaaaaagHagaagbaaaabmaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaagcahVahWahXahYahZaiaaeZaeZaeZaeZaglaibaicaidaieaifaigaihagpagpagpagpaiiacDaijaikailaimahzahAainahCaioahDahEaipacDaiqairaisaitaitaeBacIacIacIabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaagUagVagWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmabmahNaiuaivaiwaixaiyacsacsacsacsaaaabmabmaaaaaaaaaagYagYagYaizaizaiAacjacjacjaiAaizaiBagYahOagYaaaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacLaiCaiDacKaiEaiEaiEaiFaiEaiGaiEaiEaiEacKaiDahUacLaaaaaaaaaaaaagHaiHaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaaaaagcaiIaiJaiKaiLaiMaiNaiOaiPaeZaglaiQaiRaiSaiTaiUaiVaiVaiVaiVaiVaiVaiVaiVaikahCaiWaiXahzaiYaiZaiZajaajbahEahEacDajcajdajeajeajeajeajeajeaeHaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaahKahLahMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaabmagYagYajfajgajhajfajfagYaaaaaaaaaaaaaaaaaaaaaaaaaaaagYagYajiajjaizajkagYajlajlajlagYajmaiBajnaizagYagYabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKajoajpacKajqajrajsajtajuajvajwajrajxacKagEahUacKaaaaaaaaaaaaagHaiHaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaaaaaaaaaaagcagdagIagJagKajyajzajAaglaibajBajCajDajEaiVajFajGajHajIajJajKajLajMajNajOaiXajPajPajQajRajRajRajRajRacDajSajTajUajVaflaflaflajWajXaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaagUagVagWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaagYagYajYajfajZakaakbajfagYagYabmabmabmabmabmabmabmagYagYakcakdakeakfaizagYakgakhakiakjagYagYagYakkaklagYagYaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKakmaknakoakpakqakraksaktakuakvakvakwakoakxafpacKaaaaaaaaaaaaagHaiHafxafyafAafBafBafAafBafBafAafBafBafAafzafzafzafzafzafzahgakyahjacjakzahlakAaglakBakCakDakDakEaiVakFakGakHakIakJakKajLakLakMakNaiXajPakOakOajRakPakQakRakSajRajRajRajRajRakTacEacEafTajXaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaahKahLahMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmaaaagYagYakUaizajfakVakWakXajfakYagYagYaaaaaaaaaaaaaaaaaaagYakZalaalbagYalcaldagYalealfaleabmabmabmagYagYaizalgagYaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalhalialjalkallalmalnaloalpalqalralsaltalualvaaaaaaaaaaaaaaaagHaiHagaagbabmaaaaaaabmaaaaaaabmaaaaaaabmaaaaaaaaaaaaaaaaaaaaaalwahWalxaiMahZalyaglalzalAalBaeZalCaiValDalEalFalGalHalIajLalJajPalKaiXajPalLalLajRakSalMalNalOahBalPahBalQalRalSaaaacEafTajXaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaagUagVagWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmagYagYalTalTalUagYahOalVahOagYaizakYagYagYaaaaaaaaaaaaagYagYalWajmalXagYalWaizagYalealYaleabmaaaaaaaaaagYagYalZagYagYaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiEaiEamaambamcamdameamfamgamhamiamjamkaiEaiEabmabmabmabmamlammamnaiHaaaabmabmabmabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaagcahVamoampamqaeZaglalzamramsamtamtaiVaiVaiVaiVamuajLajLajLamvamwamxamyamzamAamBamCakSamDajPamEamFamGamFamHamHalSaaaacEafTajXaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaahKahLahMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaagYagYakcakdakdakdakdakdamIakdamJakdakdamKagYagYahOahOagYagYakcamLagYagYagYalWaizagYamMamNamOabmaaaaaaaaaabmagYaizamPahOaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiEaiEamQamRamRamSamTamUamRamVamWamXamXafzafzafzamYafzamZagbamnamnaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaanaanbaiOancaeZaglalzandamtaneaneanfaneaneanganhanianjankankanlanmannankankankajRanoanpanqanrahBansahBantamHalSaaaacEafTanuabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaagUagVagWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYakcamLagYagYagYagYahOahOahOahOagYagYanvakeakeakdakdakdakdanwagYagYabmagYalWanxanxanxanyanxanzanAanBanCaaaagYagYaiAagYaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanDaiEanEanFanGanHanFanIanGanFaiEaiEanDaaaaaaaaaabmaaaaaaaaaamnamnaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaanJanKagKajyanLanMaglalzandamtanNanOanPanQanRanSanTanUanVanWanWanXanYanZanWaoaaobajRaocakSakSajRajRajRajRajRajRajRankankaodannaoeaoeaoeaoeabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaabmabmahKahLahMabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYagYalWagYagYabmabmabmabmabmabmabmabmagYagYagYagYaofahOagYagYagYagYabmabmagYalWanxaogaohaoiaojaokaolaomaonaooabmadoacjaopabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmanDaiEaoqanGanFaoraosaotanFanGabmabmanDaaaaaaaaaabmaaaaaaaaaagHaouaaaaaaaaaaaaaaaaaaamlaovaowaowamYaowaowaowamYaowaowaowaoxaoyacjakzahlaozaglalzaoAamtaoBaoCaoDaoEaoFaoGaoHaoIaoJaoIaoIaoKaoLaoIaoIaoMaoNaoOakSakSakSaoPaoQakSakSakSaoRajRakSaoSaoTannaoUaoVaoWaoXaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaabmabmaoeagUagVagWaoeabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaahOakcamLagYabmabmabmagYahOahOahOagYabmabmabmabmabmabmabmabmabmabmabmabmagYagYalWanxaoYaoiaoiaoZapaapbacjapcapdafzafCafAapeafzafzafzapfafzafzafzamYafzafzafzapfafzapgaphaaaaaaaaaabmaaaanDaiEamfanFapiapjapkaplapmanFabmabmanDaaaaaaaaaabmaaaaaaaaaaiHaiHaaaaaaaaaaaaaaaaaaagaagbaaaaaaaaaaaaaaaaaaabmaaaaaaaaaapnapoalxaiMahZappaglalzapqamtaprapsaptaptapuangapvapwapwapwapwapwapwapwapxapyapzapAakSakSakSakSakSakSakSapBakSapAakSapCapDapEapFapGapHaoXaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaabmaoeaoeahKahLahMaoeaoeabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaahOalWapIapJapJapJapJapJapKaizapLagYagYagYagYagYagYaofagYagYahOahOahOahOagYalTapMapNapOaoiaoiapPapQapRagIapSapTabmadoacjaopabmaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaapnapUaphaaaaaaabmaaaanDaiEapVanFanFapWapXapYanFanFabmabmanDaaaaaaaaaabmaaaaaaaaaaiHaiHaaaaaaaaaaaaaaaaaaaiHaaaaaaabXabYabYabYabYabYabYabYabYabYapZamoampaqaaeZaqbaqcapqamtaprapsaptaptaqdangaqeaqeaqeaqeaqeaqeaqeaqeaqfaqgaqhaqiaqjaqjaqjaqkakSaqlajRajRajRajRankaodannankaqmaqnaqoaoXabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmaoeaqpahLaqqahLahLaoeaoeaoeabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaahOalWapIapJaqraqsaqtapJaquaizaizagYaizaizaqvaizagYaqwaqxagYaizaizaqyaizakcakdamLanxaqzaoiaoiaqAaqBaqCaqDaqEaaaabmagYaiAagYabmaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaapnapUaphaaaabmaaaanDanDanDanDanFanFanFanFanFanDanDanDanDaaaaaaaaaabmaaaaaaaaaaqFaqFaaaaaaaaaaaaaaaaaaaqGabmabmagcajlajlajlajlajlajlajlajlabTabTadQabTabTabTaqHaqIaqJamtangangangangangangaqKaqLaqMaqNaqOaqPaqQaqRaqSaqTaqUaqVaqWaqXaqXaqXaqYaqZajRaraarbarcardafTafjaoearearfargarhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahLahLariarjahLahLaqparkaoeabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmahOalWajYapJarlarmarnapJapJapJaroarparparqarraizagYagYagYagYarsartartartaruartartartarvaoiarwanxarxarxajlaryaaaabmagYarzagYabmaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaapnapUaphabmaaaaaaaaaaaaanDanDanDanDanDanDanDaaaaaaaaaaaaaaaaaaabmaaaaaaafxarAaiHaaaaaaaaaaaaaaaaaaamnaaaaaaaaaarBarCarCarDarCarCarCarEarCarCarFaaaabTarGarHarIarJakTarKarLarMaqearNaqKaqKarOarParQarRarSarSarTarUarVaoNajRarWarXarYarZasaasbajRascasdadbadbafTafjaoeaoeaoeaoeaoeacIacIabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmaoeaqpahLaseahLasfaoeaoeaoeabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaahOalWaizapJasgashasiasjaskaslasmagYagYasnasoarparparqaizaizaspartasqasrassastasuartasvaoiaswanxaaaaaaaaaaaaaaaabmahOaizahOabmaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaapnasxamYafzafzafzafzafzafzafzafzamYafzafzafzafzafzafzafzafzamYafzafzamZagbaiHaaaaaaaaaaaaaaaaaaamnaaaaaaarBasyaszasAasBasBasBasBasBasBasBarDasCadQadQasDasEasFasGasHasIasJaqeasKasLasMarOasNasOaqSaqKaqKasPaqSaqgaoNajRasQasRasSasTasUasUajRadbasVasWasWasXafjacIasYasZataatbatcacEaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaoeaoeahLahLahLaoeaoeabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmaaaaaaahOatdateatfatgathatiatjatkapJajmagYaizaizatlatmatnatoatnatnatnatpatqatratsattatuartasvaoiaswanxaaaaaaaaaaaaabmabmagYatvagYabmaaaaaaaaaaaaaaaaaaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaamnaaaaaaatwatxatxatxatxatxatxatxatxatxatxatyatzatAatBasDasEatCatDasIatEatEaqeatFasIatGarOatHatIatJanUatKatLatMatNapzatOatOatOatOatOatPatPatPatQatPatPatPatRafjacIasdadbadbadbasdacEaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaoeaoXaoXaoXaoeabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaabmaaaaaaagYagYatSaizapJatTatUatVatWatXapJagYagYagYagYatYatZauaaubaucaudaueaufaugauhauiaujaukartaulaumaunanxaaaaaaaaaabmabmakjagYaiAagYakjaaaaaaaaaaaaaaaaaaabmaaaabmabmaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmaqGaaaaaaaaaaaaaaaaaaaqGaaaaaaauoaupauqauqaurauraurauraurauraurarDadQadQadQasDasEatCakTausatEatEaqeautautauuauvauwauxauyauzauAaqRaqSaqgauBauCauDauEauFauGauHauIauIauIauIauIauJatRafjacIadbadbauKadbadbacEaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYagYagYauLauMauNauOauPauQauRauSauTauUauPauVatmauWatmauXauYanxanxanxauZanxartartavaavbavcartartavdaveavfanxabmabmabmakjakjakjacjabmabmakjakjakjaaaaaaaaaaaaabmaaaaaaabmabmaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaabmabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaamnaaaaaaaaaauoarCarCarDarCarCarCarEarCarCavgaaaabTavhasDasEaviakTavjakTakTakTavkavkavlakTavkavmakTakTakTakTavnaqgavoauGavpavqavrauCauIavsavtauIavuauIavvatRafjacIavwadbasdadbadbacEaaaabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaabmabmabmahOavxaizavyavzavAavBavCavDavEavFavGavCavCavHaueaueaueavIavJanxavKavLavMavNavLavOavPavQavRavSavSavTaveavUanxabmabmakjakjacjacjacjabmabmaaaaaaakjakjaaaaaaaaaabmaaaaaaaaaabmabmaaaaaaaaaaaaaaaabmaaaaaaaaaaaaabmabmaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaamnabmabmabmabmabmakjakjakjakjakjakjabTadQadQadQabTabTasDasEavVavWavXavYavZavZawaawaawbawcawcawdakTaweawfawgawhawiawjawkawlawmawnauCawoawpatPatPatPatPatPatRafjacIacIawqacIacIacIacIaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmaaaaaaagYahOagYavyawrawsawsawsawsawsawsawsawsawsawsawtawtawtawuawuawuawvaveaveawwaveawxawyawzaveaveaveaveaveavUanxabmakjakjacjacjacjacjabmabmaaaaaaaaaakjakjaaaaaaabmaaaaaaaaaaaaabmabmaaaaaaaaaaaaabmaaaaaaaaaabmabmaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaawAaphaaaaaaaaaaaaaaaaaaabmaaaaaaacjadQawBaeuaeuaeuaeuasDawCawDawDawEawFawGawHawHawHawHawHawHawIawJawKawLawJawKawMaqUawNawOawPawQawRawSawTawUawVawWawXatPafTafjadbadbadbadbacIabmabmabmaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaabmaaaahOavyawrawsawYawZaxaaxbaxcaxdaxeaxfawsaxgaxhaxiaxjaxkaxlaxmaveaveawwaxnaxoaxpaxqaxraxsaxraxraxraxtanxabmakjacjacjacjacjacjabmabmaaaaaaaaaaaaakjaaaaaaabmaaaaaaaaaaaaaaaabmabmaaaaaaaaaabmaaaaaaabmabmaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmaqGaaaaaaaaaaaaaaaaaaaxuapUaphaaaaaaaaaaaaaaaabmaaaaaaaaaadQawBaeuaeuaeuaeuaxvaxwaxxaxxaxyaeuasEaeuaxzaxAaxAaxBaxAaxCakTaxDaxEasGarUarVaoNauCauGauCauGauCaxFauIauIawWaxGawWatPaxHafjacIadbadbadbacIacIaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYagYagYagYagYagYagYavyawrawsaxIaxJaxKaxLaxMaxNaxOaxPaxQaxRaxSaxiaxjaxjaxlaxmaveaxTawwaxUanxaxVaxWaxXanxanxanxanxanxaxYaxYakjacjacjacjacjacjacjabmaaaaaaaaaaaaakjabmabmabmaaaaaaaaaaaaaaaaaaabmaxZacjacjacjacjacjabmaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaaaaaxuapUaphaaaaaaaaaaaaabmaaaaaaaaaayaayaayaayaayaabTabTabTaybabTaycaeuasEaeuatCaydaydaydaydaydayeaydaydaydaqfaqgayfaygayhayhayhaygayiayjatPaykawWaylatPahFaymacIaynadbadbadbacIacIabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYagYaizaizaizagYagYaizavyawrawsayoaypayqayraysaytayuayvawsaxSaxSaxiaywaywaxlaxmayxayyayzaxUanxayAayBayCayDayEayFayGayCayCaxYacjacjacjacjacjacjabmabmaaaaaaaaaaaaaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaaxZacjacjacjacjaxZaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaaaaaaaaxuapUaphaaaaaaaaaabmaaaayHayaayaayIayaayJayaayaayaayKayLabTasDaeuasEaeuatCaydayMayNayOayPayQayRaySayTaqSaqgaoNayUawUayUawUayUatPayUatPatPatPatPatPafTayVacIacIacIacIadbadbacIabmaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYayWaizayXaizaizagYaizayYawrawsawtawtawtayZazaazbayuazcazdazdazdazdazeazdazdawvayxazfayzazganxazhaziayCayCayCayCazjayCayCazjabmabmacjabmabmacjabmaaaaaaaaaaaaaaaaaaabmaaaabmaaaaaaaaaaaaaaaaaaaaaacjacjaxZazkacjacjaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaiHaaaaaaaaaaaaaaaaaaaaaaaaaaaaxuapUaphaaaaaaabmayHayHayIayIayIayaayJayJayJayaayaazlabTasDaeuasEaeuatCaydazmaznazoazpazqazrazsaztarUarVaoNazuazvazwazxazyazzazAazBazBazBazBazCazDazEazFacEaaaacIacIadbacIacIaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmagYazGazHazIazJaizaofaizayYazKawsawYazLazMazNazOaytayuazPazdazQazRazRazRazSazdawvayxazTayzaxUanxazhaziayCayCayCayCayGazUayCayGabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaabmaaaabmabmabmabmabmabmabmabmacjacjazVazWacjacjabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaanJarAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxuazXaaaaaaayHayHayIayIayIayIayaayJayJayJayJayaayaabTasDaeuasEaeuatCaydazYazZaAaaAbaAcaAdaAeaAfawhapyaAgaAhaAiaAiaAiaAjaAkazAazBaAlaAmazBazCaAnaAoaApacIacIabmacEadbaAqacEaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYalXaizaAraizaizagYaAsaAtaAuaAvaAwaAxaAyaAzazOaAAaABaACazdaADaAEaAEaAEaAFazdawvaveaAGawwaAHanxazhaAIaAJaAJaxYaxYaxYaxYaxYaxYaxYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakjabmabmabmaaaaaaaaaaaaaaaaaaaaaaxZacjacjacjacjaxZaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaanJaAKagbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaaaaaayaayIayIayIayIayIayaayJayJayJayJayJayaabTaALaeuasEaeuatCaydaAMaANaAOayQaAPaAQaARaASaATaAUaAVaAWaAXaAYaAZaBaazCazCazBazBazBazBazCaBbahFafjadbacIacEacIadbadbacEaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYagYaizaizaizagYagYaBcayYazKawsayoaypayqayraysaytayuaBdazdaADaBeaBfaBgaBhazdawvaveaveawwaxUanxazhaAIaAJayCayCaBiaxYaxYabmaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakjaaaaaaabmaaaaaaaaaaaaaaaaaaabmaxZacjacjaxZacjacjabmaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaanJaAKapTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaaayaayaayIayIayHayHayIayaayJayJayJayJayJayaayaasDaeuaBjaBkaBlaBmaBnaBoaBpaBqaBraBsaBtayeaqSaqgaoNaBuaBvaBwaBxaByaBzaBAaBBazBazBazBazCaBCafTafjadbadbadbacIadbaBDacEabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYagYagYagYagYagYaBcayYazKawsawtawtawtaBEaBFaBGaBHaBIazdaBJaAEaBKaBLaBMazdaBNaveaveawwaxUanxazhaBOaAJayCayCaBiayGabmabmaaaabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaakjakjaaaaaaabmaaaaaaaaaaaaaaaabmabmaaaaaaaaaabmaaaaaaabmabmaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaabXabYaBPaAKapTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaaayaayIayIayIayIayHayIayaayJayJayJayJayJayJaBQaBRaeuasEaeuaviaBSaBTaBUaBUaBVayeayeayeayeaBWarVaoNaBuaBuaBuaBuaBuaBuazCazCazCazCazCazCacDaBXaApaBYaeBadbacIadbacIacIaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaBZagYaCaaCbaAsaCcaCdayYazKawsawYazLazMazNazOaytaABaCeazdaCfaCgaBKaChaCiazdawvaveaveawwaxUanxazhaCjaAJayCayCaBiayGaaaaaaaaaaaaabmabmaaaaaaaaaaaaaaaaaaaaaakjakjabmabmabmaCkabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmaCkabmabmabmabmabmabmaClaCmafAaCnaCoabmabmabmabmabmabmabmabmabmabmabmabmabmabmamnabmayaayaayaayaaCpayaayaayaaCqaCraCraCraCsaCtaCuaCvawHaCwaeuaCxaCyaCzaCAaCBaCCaCDaCEaCFaCGaCHarVaoNaCIaCJaCJaCKaCLaCMaCNaCOaCPaCQaCRaCSaCTafTaCUaeJadbadbadbadbacEabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaBZahOaCVaCWaCXaCYaCZaAtaAuaAvaAwaAxaDaayraDbazbayuaDcazdaDdaDeaDfaDgaDhazdawvaveaveawwaxUanxazhaziayCayCaBiaBiayGaaaaaaaaaaaaaaaabmabmabmaaaaaaaaaakjakjakjaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaanJaAKaDiajlaryaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaaayaaDjaDjaDjaDjaDjaDjayaaDkayJayJayJaDlayJaBQaDmaeuaDnaDoaDoaDpaDqaDraDsaDtaDuaDvaDwaDxaDxaDyaDzaDAaDBaDCaCJaDDaCJaCJaCJaCJaDEaCJaDFaCTafTafjadbaDGaDHadbacIacIabmaDIaDIaDIaDIaDIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaDJaCcaCZaDKaCdagYaizaDLazKawsayoaypayqaDMaDNaDOaDPaDQazdazdazdaDRaDSazdazdawvaveaveawwaxUanxazhaziaxYaxYaxYaxYaxYaaaaaaaaaaaaaaaaaaaaaaxYaxYazjaxYaxYaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaanJaAKagbaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaaayaayaaDjaDjaDjaDjaDjayaaDkayJayJayJaDlayaayaaDTaeuaDUaeuaDVaDWaCzaDXaDYaDZaEaaqeaEbapwaEcaEdaxEaEeaEfaEgaEhaEiaEjaEhaEhaEhaEkaEhaEhaElaEmaEnaEoaEoaEoaEpaEqabmabmaEraEsaEtaEtaEuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaBZagYagYagYagYagYaizaEvazKaEwaEwaEwaEwaEwaEwawsaExawsazdaEyaEzaBKaBLaEAazdawvaveaveawwazganxaEBaziayCaECaEDayCaxYayGaxYaxYayGaxYaxYayGaxYaEEayCazUaxYaaaaaaaaaaaaaaaaDIaEFaDIaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaanJaAKapTaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaaaaaayaaDjaDjaEGaDjaEHaEIaEJaEKaEKaEKaELayaaEMaDTaeuaDUaeuatCaCzaCzaENaENaENaEOaqeaEPaqeaqeaqeaqeaEQaERaESaETaEUaEVaEWaEXaESaESaESaESaEYaEZajTaFaajTaflafmanuaaaaaaaFbaFcaFdaFeaFfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYagYaFgaFhaFiagYaizayYazKaEwaFjaFkaFlaFmaEwaFnaFoaFpazdaFqaFraBKaBLaFsazdawvaveaveawwaxUanxazhaFtaFuaFuaFuaFuaFuaFuaFuaFuaFuaFuaFuaFuaFuaFuaFvayCaxYaaaaaaaaaaaaaFwaFxaFyaFzaFAaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaanJaAKagbaaaaaaaaaabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmaqGabmabmayaayaaFBaFCaDjaFDayaayJayJayJayJayaayaabTaFEaeuaDUaeuatCaFFaFGaFHaFIaFJaFKaFLaFMaFNaFOaCJaFPaCJaFQaCJaEQaEQaEQaEQaEQaFRaFSaFSaFTaFUaCTaCTaCTaCTaCTafTanuaaaaaaaEraFVaEraEraEraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaahOaFWaFXaFYaFXaFZaizayYazKaEwaGaaGbaGcaGcaEwaGdayuaGeazdaGfaFraGgaGhaGiazdaGjaveaveawwaxUanxazhaziaEDaECaECaxYaxYayGaxYaxYayGaxYaxYayGaxYayCaziayCaxYaaaaaaaDIaGkaGlayCayCayCaGmaFAaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaanJaAKapTaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaDIaDIaDIaaaaaaaaaaaaaiHaaaaaaaaaayaayaaGnaDjaFDayaayJayJayJayaayaabmadQaDTaeuaDUaeuatCaFFaGoaGpaGqaGqaGraGsaGtaFNaGuaGvaGvaGvaGwaGxaEQaGyaGzaGzaGAaGBaCJaCJaCJaGCaGDaGEaGEaGEaCTafTanuaaaaEraGFaGGaGHaGIaEraEraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmagYagYagYagYagYagYaizayYazKaEwaGJaGcaGcaGKaEwaGLaGMaGNazdaGOaGPaGQaGRaGSazdawvaveaveawwaxUanxazhaziaxYaxYaxYaxYaaaaaaaaaaaaaaaaaaaaaaaaaxYaxYaGTaxYaxYaaaaGUaGVaGWaFuaGXaGYayCayCazjanDanDanDanDanDanDanDanDanDanDanDanDanDanDanDabXabYaBPaGZapTaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaFwaHaaHbaHcaFAaaaaaaaaaaiHaaaaaaaaaaaaayaayaayaaFDayaayJayaayaayaaaaabmadQaHdaHeaDUaeuatCaFFaHfaHgaHhaHiaHiaHjaHkaFNaHlaHmaHnaHoaHpaHqaEQaGEaGEaGEaHraHsaCJaCJaCJaHtaHuaGEaHvaGEaCTafTanuacIacIaHwaHxaHyaGGaGIaHzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaahOaizaFXaHAaFXaofaizayYaHBaEwaHCaHDaGcaHEaEwawsaHFawsazdazdaxlaHGaHHazdazdaBNaveaveawwaxUanxazhaziaHIaHJaxYabmaaaaxYaxYaxYaxYabmabmabmabmaHKaHLaHMaEFaEFaHNaHOaHPaHQaHRaFvayCaHSaHTabmabmabmabmabmabmabmabmabmabmabmabmabmabmaHUaCmafAaCnaHVabmabmabmabmabmabmabmabmabmabmabmabmabmabmaHNaHWaHXaHXaHXaHYaHMaEFaHZaIaaIbaEFaIcaIcaIcaIcayaaIdayaayaayaabmabmabmabmadQaIeaDTaDUaeuaIfaIgaIhaIiaIjaIkaIlaIlaImaFFaInaIoaIpaIqaIqaInaCTaGEaGEaGEaGDaIraCJaCJaCJaIsaGAaGzaGzaItaCTaIuaIvaIwacIaIxaIyaIzaIAaIBaHzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaICaIDaaaaaaaaaaaaaaaaaaaICaIEaIFaIFaIFaIFaIFaIFaIGaIDaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYagYaIHaIIaIJagYaizaEvazKaEwaIKaILaIMaINaIOaIPaIQaIRaIRaISaIRaITaIUaIVanxaxmaveaIWaIXaIYaIZaJaaJbayCaJcaxYaxYaxYaxYaJdaJeayGaaaaaaaaaaaaaGUaJfaJgaJgaJgaJgaJhaJiaJjaJkaziaJlaJmaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaanJaGZaDiajlaryanDanDanDanDanDanDanDanDanDanDanDanDanDanDanDaJnaHXaHXaJoaJpaJqaJraJsaJtaJuaJvaJwaJxaJxaJxaJxaJxaJyaJiaaaaaaaaaaaaabmaaaadQaJzaJAaJBaeuaIfaJCaJDaIiaJEaJFaJGaJGaJHaFFaGEaJIaGEaGEaGEaGEaCTaEQaEQaEQaEQaJJaJKaCJaJLaJJaEQaEQaEQaEQaCTaJMaJNaJOaJPaJQaJRaGGaJSaJTaHzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJUaJVaIDaaaaaaaaaaaaaICaJWaJXaJXaJYaJZaJXaJXaJXaJXaKaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaagYagYagYagYagYaizayYazKaEwaKbaKcaKdaKeaKfaKgaKhaKiaKjaKjaKjaKkaKlaKmaKnaxmaveawzaKoaKpanxazhaziayCayCaEDayCayCayCayCayCayGaaaaaaaaaaaaaaaaKqaKqaKqaKraKqaKqaaaaaaaKsaGTaJmaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaanJaAKagbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaKsaKtaHXaKuaKvaKwaKxaKqagcaKyaryaKqaKqaKqaKqaKqaKqaKqaaaaaaaaaaaaabmabmabmadQaKzaDTaKAaBkaKBaKCaKDaIiaIjaKEaKFaKFaKGaFFaGEaGEaGEaGEaGEaGEaCTaGyaGzaGzaGAaGBaCJaCJaCJaGCaGDaGEaGEaGEaCTaKHaKIafjacIaEraKJaKKaKKaKLaEraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKMaKNaKOaIDaaaaaaaICaKPaJWaJXaJXaJXaJXaJXaJXaJXaKQaKRaIFaIDaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaagYaizayYazKaEwaKSaKSaKTaKUaEwaEwaKVaKWaKXaKYaKZaKZaLaaLbanxaxmaveaLcaKoaLdanxazhaHRaFvaECaLeaLeaLeaLeaxYaxYaxYaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaanJaAKapTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaJjaLfaKuaLgaJmaaaaaaaaaaiHaaaaaaaaaaaaaLhaLhaLhaLhaLhaLhaLhabmabmaaaabmadQaLiaLjaLkaeuaviaFFaLlaLmaLnaKEaLoaLpaLqaFFaGEaGEaGEaGEaGEaGEaCTaGEaLraGEaLsaHsaCJaCJaCJaHtaLtaGEaLraGEaCTafTacIafjacIaEraHzaHzaHzaEraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKMaKNaLuaKOaIDaICaKPaLvaKaaLwaJXaJXaJXaJXaJXaJXaJXaLxaLyaLzaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmabmabmabmabmagYagYayYazKaLAaLBaIRaITaLCaLDaIRaLEaKWaLFaLAaLAaLAaLAaLAanxawvaveaveaKoaLGanxaLHayCaziaLIaLJaLKaLLaLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaanJaAKagbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaKsaLMaJmaaaaaaaaaaaaaiHaaaaaaaaaaLhaLhaLhaLhaLhaLhaLhaLhaLhabmaaaabmabTasDaeuaLNaLOatCaFFaLPaIiaIjaKEaLQaLRaLSaFFaGEaGEaLTaGEaGEaGEaCTaGEaGEaGEaGDaIraCJaCJaCJaIsaGAaGzaGzaItaCTaLUacIaLVacIaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKMaKNaLuaLuaKRaJVaLvaJXaKaaLwaJXaJXaJXaJXaJXaLWaKPaIFaJVaLXaIDaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaagYagYagYabmabmauLaLYaLZaLAaMaaMbaMcaMdaMeaKjaMfaMgaMhaMiaMjaMkaMlaMmanxawvaveaveaMnaMoanxazhayCaziaLJaLJaMpaMqaLJaMraMraMraMraaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaanJaAKapTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmabmabmabmabmabmaHKaMsaMtabmabmabmabmaqGabmabmabmaLhaLhaMuaMvaMwaMxaMuaLhaLhabmaaaabmabTasDaMyaMzaMAatCaMBaMCaMDaMEaMFaMFaMFaMFaMBaCTaMGaMHaMHaMIaCTaCTaEQaEQaEQaEQaJJaMJaCJaMKaJJaEQaEQaEQaEQaCTafTacIaMLacIacIacIaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaMMaIFaMNaLuaMOaJXaMPaJXaKRaMQaMRaJXaJXaJXaLWaKPaLvaMSaMSaMTaJWaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaahOapIagYagYagYayYaMUaMVaLAaMWaMbaMXaMYaKlaMZaMZaMZaNaaNbaNcaNdaNeaNfanxawvaveaveaNgaNhanxaNiaNjaNkaLJaNlaNmaNnaLJaNoaNpaNqaMraMraaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaaaaaaaaaaaaaabXabYaBPaAKapTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaGUaMsaJiaaaaaaaaaaaaaiHaaaaaaaaaaLhaLhaMuaMwaMuaMwaMuaLhaLhabmaaaabmadPasDaMyaNraMAatCaMBaNsaNtaNuaNvaNvaNwaNxaMBaNyaNzaNAaNBaNCaNDaCTaGyaGzaGzaGAaGBaCJaCJaCJaGCaGDaGEaGEaGEaCTaLUacIafjaNEadbacIaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaICaKPaIFaJWaJXaJXaJXaMTaJVaIFaIFaIGaLXaKPaLvaJXaNFaNFaNGaKaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaahOahOaizaizaizaizaNHaNIaNJaLAaNKaMbaNLaNMaNNaNOaNPaNQaNRaLAaNSaNTaNUaNfanxaBNaveaveawwaxUanxaNVayCaziaLJaNWaNXaNYaLJaNZaOaaOaaObaMraMraaaaaaaaaaaaaaaabmabmabmabmabmaOcaHLaOdabmabmabmabmabmabmabmaClaCmafAaCnaCoabmabmabmabmabmabmabmabmabmabmabmabmabmabmabmaCkaaaaaaaaaaaaaaaaaaaaaaaaaaaaGUaMsaJiaaaaaaaaaaaaaiHaaaaaaaaaaLhaLhaMuaMxaOeaMvaMuaLhaLhabmaaaabmadPaycaMyaOfaMAatCaMBaOgaOhaOgaOiaOjaOkaOgaMBaOlaOmadbaOnaOoaOpaCTaGEaGEaGEaOqaHsaCJaCJaCJaHtaOraGEaGEaGEaCTafTadbafjacIacIacIabmabmaaaacIacIacEacIacIabYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaICaLXaJVaLvaJXaKaaJXaJXaJXaJXaJXaJXaJXaJXaMTaJWaJXaJXaJXaJXaJXaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmahOahOaizaizagYagYagYaOtaOuaNJaLAaOvaOwaOwaOxaOyaLAaOzaLAaOzaLAaLAaLAaLAaLAanxawvaveaveawwaxUanxazhaEDaziaLJaOAaOBaOCaLJaODaOEaOFaOGaOHaMraaaaaaaaaaaaabmabmaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaaaaaaaanJaAKaDiajlaryaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaGUaMsaJiaaaaaaaaaaaaaiHaaaaaaaaaaLhaLhaMuaOIaMuaOJaMuaLhaLhabmaaaabmadPasDaeuaOKaOLatCaMBaOMaONaOgaOOaOPaOPaOQaMBaOlaORaNAaOnaOSaNAaCTaGEaGEaGEaGDaOTaCJaOUaCJaIsaGAaGzaGzaItaCTafTadbafjacIaaaaaaaaaabmacIacIaOVaOWaOXacIacIacIaICaLXaIFaIFaIFaIFaIFaIFaIFaLXaIDaaaaICaKPaLvaJXaJXaJXaKaaJXaJXaLWaIFaIFaIGaMQaJXaJXaKaaJXaJXaJXaJXaJXaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaahOaOYaOZagYagYabmagYaPaaOuaLAaLAaLAaLAaPbaPcaPdaLAaPeaPfaPgaPhaMbaPiaPjaMbanxawvaveaveawwaxUanxazhaxYaziaLJaLJaPkaPlaLJaODaPmaPnaOGaPoaMraMraaaaaaabmabmaaaaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaaaaanJaAKapTaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCkabmabmabmabmabmabmabmabmabmaHKaMsaHMabmabmaCkabmaqGabmabmabmaLhaLhaLhaPpaPqaPraPsaLhaLhaLhaLhaLhaLhasDaeuaDUaeuatCaMBaOgaOhaOgaOiaOjaOkaOgaMBaOlaPtadbaOlaPuaPvaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTafTadbafjacIacIacIacIacIacIaPwaPwaPxaPwacEaPwacEaKPaLvaJXaJXaJXaJXaJXaJXaJXaMTaKPaIFaKPaLvaJXaJXaJXaJXaPyaJXaJXaKaaPzaPAaJXaKaaJXaJXaOsaJXaJXaJXaPBaPCaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaabmaaaahOaizaPDagYabmaaaahOaPEaOuaLAaPFaPGaMiaPHaPIaLFaPJaPKaMbaMbaMbaMbaMbaMbaPLanxaxmaveaveawwaxUanxazhaEDaziaPMaPNaPOaPPaPMaPQaPRaPRaPSaPTaPUaMraaaabmabmaaaaaaaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaaaaanJaAKapTaaaaaaabmaaaaaaaaaaaaaaaaaaaPVaPVaPVaPVaPVaaaaaaaaaaaaaaaaaaaCkaaaaaaaaaaaaaaaaaaaDIaDIaDIaGUaPWaPXaJiaaaaaaaaaaiHaaaaaaaaaaxZabmaLhaPYaPZaQaaQbaQbaQcaQdaQeaQfaQdaQgaQhaDUaeuatCaMBaQiaOgaQjaQkaQkaQkaQlaMBaOlaQmadbaQnaQoaQpaflaflaflaflaflaflaflaflaflaflaflaflaflaflaflaQqagpaQragpagpaQsagpagpaQtaQuaQuaQvaQuaQwaQxaQyaIGaJXaJXaJXaJXaJXaJXaJXaJXaJXaIGaJXaIGaJXaJXaJXaJXaJXaQzaJXaJXaKaaJXaJXaJXaKaaJXaJXaQzaJXaJXaJXaQAaQBaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaahOaizaQCagYagYagYagYaQDaOuaLAaQEaMbaQFaQGaQHaQIaQJaQKaQLaMbaMbaMbaQMaMbaQNaQOaxmaveaveawwazganxazhayCaziaPMaQPaQQaQRaQSaQTaQUaQVaQWaQXaQYaMrabmabmaaaaaaaaaaaaaaaaaaaaaaGUaHLaJiaaaaaaaaaanJaAKapTaaaaaaaaaabmaaaaaaaaaaaaaPVaPVaQZaRaaRbaRcaQZaPVaPVaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaFwaRdaReaRfaFAaJjaRgaJiaaaaaaaaaaiHaaaaaaaaaaRhaRiaLhaRjaRkaRlaRmaRnaRoaRpaRqaRraRsaRtaRuaDUaeuaviaMBaMBaRvaMBaRwaRwaRwaMBaMBaRxaRyaRzaOlaRAaRBaEpaEpaEpaEoaEoaEpaEpaRCaEpaEpaRCaEpaEpaRDaREajeaEpaRFacIacIaRGacIacIacIaRHaPwaPwaPwacEaPwacEaKPaMQaJXaJXaJXaJXaJXaJXaRIaLWaKPaIFaKPaMQaJXaJXaJXaJXaPyaJXaJXaKaaJXaRJaJXaKaaJXaJXaOsaJXaJXaJXaPBaPBaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaahOaizaizaizaizaizagYaRKaOuaLAaRLaNLaRMaRNaNMaROaRPaRQaRRaRSaRTaRUaRVaRWaRXanxaxmaveaveawwaxUaRYaRZaSaaSbaPMaScaSdaSeaSfaSgaOaaOaaObaShaSiaMraaaaaaaaaaaaaaaaaaaaaaaaaaaaGUaHLaJiaaaaaaanJaAKagbaaaaaaaaaaaaabmaaaaaaaaaaPVaQZaSjaSkaSlaSmaSnaSoaSpaQZaPVaaaaaaaaaabmaaaaaaaaaaaaaGUaHWaSqaSraHXaHYaSsaRgaJiaaaaaaaaaaiHaaaaaaaaaaRhabmaLhaStaSuaSvaSwaSxaSyaLhaSzaSAaLhaBRaSBaDUaeuavVavYawaawaaSCaSDaSDaSDaSEaSFaKIaSGaSHaOlaSIaSJacIaSKacIaSLaSMacIaSNaSOadbadbaSPaSQacIacIacIacIacIacjacEaSRaSSadbacEacIacIaSTaSUaSVacIacIacIaSWaJVaIFaIFaIFaIFaIFaIFaIFaJVaSXaaaaSWaKPaMQaJXaJXaJXaKaaJXaJXaKaaJXaSYaSZaKaaJXaJXaKaaJXaJXaJXaJXaJXaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYagYagYagYagYaizaTaaTbaOuaLAaLAaLAaLAaTcaTdaLFaTeaTeaTeaTeaTeaTeaTeaTeaTeanxaTfaTgaveawwaThaRYaTiaTjaTkaPMaTlaTmaTnaPMaToaTpaTqaOGaTraMraMraaaaaaaaaaaaaaaaaaaaaaaaaaaaGUaHLaJiaaaanJaAKagbaaaaaaaaaaaaaaaabmaaaaaaaPVaQZaTsaTtaTuaTvaTwaTxaTyaTzaTAaQZaPVaaaaaaabmabmabmabmabmaOcaTBaTCaHXaHXaHXaTDaTEaMtabmabmabmaqGabmabmabmaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaALaSBaDUaeuaeuaDUaeuaeuaeuaeuaeuaeuaTGacIadbaTHaSHaTIaTJaTKaTLaTLaTLaTLaTLaTLaTMadbaTNaTNadbadbacEajlagdaTOajlajlacIacIadbacIacIajlacIacIacEacIacIajlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSWaJVaLXaMQaTPaKaaJXaJXaMTaIGaIFaIFaLvaJXaJXaKaaPBaJXaJXaJXaJXaOsaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaagYaCbajmayWagYatlaTQaTRaTSaLAaPFaPGaMiaTTaPIaLFaTeaTUaTVaTWaTXaTYaTZaUaaUbanxaUcawvaveawwaUdaUeaUfaUgaUhaUiaUjaUkaUlaPMaUmaUnaUoaOGaUpaMraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGUaUqaJianJaAKapTaaaaaaaaaaaaaaaaaaabmaaaaaaaQZaTsaSlaUraUraUsaUtaUuaUraUraSnaTAaQZaaaaaaabmaaaaaaaaaaaaaGUaUvaHXaHXaHXaUwaUxaRgaJiaaaaaaaaaaiHaaaaaaaaaaTFaUyaUzaUAaUBaUCaUDaUEaUFaUGaUHaUIaUJaUKaULaUMaUNaUNaUOaUPaUQaURaUNaUNaUNaUSaUTaUUaUVaUWaUXaUYaTKaUZaVaaVbaVcaVdaTLacIacIacIacIacIakjakjabmadoaopabmabmabmacIaQyacIabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSWaKPaIFaJWaJXaJXaJXaJXaJXaJXaJXaJXaJXaKaaPBaJXaJXaJXaJXaKaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmagYagYaVeaizaVfagYaDLaVgaVhaViaLAaQEaMbaQFaVjaTdaLFaTeaVkaTVaTWaVlaVmaVmaVmaVnanxaVoawvaVpaVqaVraRYaVsaVtaVuaPMaVvaVwaVxaPMaPQaPRaPRaPSaMraMraaaaaaaaaaaaaaaaaaaaaaaaaaaanDaVyaVzaBPaAKapTaaaaaaaaaaaaaaaaaaaaaabmaaaaPVaQZaVAaVBaVCaVDaVEaVFaVGaVHaVIaVJaVKaQZaPVaaaabmaaaaaaaaaaaaaaaaJjaVLaVMaVNaJmaFwaRgaJiaaaaaaaaaaiHaaaaaaaaaaTFaVOaVPaVQaVRaVSaVSaVTaVUaVVaVWaVXaTFaVYaVZaWaaWaaWaaWbaWbaWcaWdaWeaWeaWeaWfafQaWgaWhaWiaWjaWkaWlaWmaWnaWoaWpaWqaTLacjaopaaaaWraWsaWsaWsaWtadoaopaaaaaaabmanDanDanDabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJUaIFaWuaLuaMOaJXaJXaJXaJXaJXaJXaMPaJXaWvaKaaPBaJXaWwaJXaLWaJWaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmagYaWxaWyaWzaWAaWBaWCaWDaCcaCcaWEaWFaNLaRMaWGaNMaWHaTeaWIaWJaWKaWLaWMaWNaWOaWPanxaWQaWRaWSaWTaxUaRYaRZaSaaSbaPMaPMaWUaWVaPMaWWaWXaWYaMraMraaaaaaaaaaaaaaaaaaaaaaaaaaaanDaHUaWZafAaCnaCoabmabmabmabmabmabmabmabmabmaaaaQZaXaaXbaUraXcaUraXdaXeaUraUraXfaUraXgaXhaQZaaaabmaaaaaaaaaaaaaaaaaaaKqaKqaKqaGUaXiaXjaJiaaaaaaaaaaiHaaaaaaaaaaTFaXkaXlaXmaXnaXoaXpaXqaXqaXqaXraXsaXtaXuaXvaXwaxAaHeaDUaDUaXxaXyabTaXzaXzaXzaXzaXzaXzaXzaTLaTLaTLaXAaXBaXCaWpaXDaTLaXEaXEaTLaXFaXGaXHaXGaXFadoaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKMaKNaLuaLuaKRaLXaLXaLXaIGaIFaIFaOsaOsaOsaJVaIFaMQaXIaLWaKPaSXaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmagYaizaXJaXKaXLaXMaXNaXOaXPaXQaXRaXSaXTaXTaXUaTdaLFaTeaXVaTVaTWaXWaXXaXYaXZaYaanxavKaYbaveawwaxUanxazhayCaYcaYdaYeaYfaYgaYdaMraMraMraMraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanJaGZaYhaYiaryaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaQZaYjaYkaYlaYlaYlaYmaYnaYlaYlaYlaYlaYoaYjaQZaaaaCkabmabmabmabmabmabmabmabmabmaHKaMsaHTabmabmabmabmaqGabmabmabmaTFaYpaYqaYraYsaYtaVVaVVaVVaVVaVVaYuaTFaYvaYwaYxaEMaDTaDUaDUaXxaYyabTaYzaYAaYBaYCaYDaYEaYFaYGaYHaYHaYIaYJaYKaYLaYMaXEaYNaYOaXEaXFaYPaYQaYRaXFakjaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKMaKNaLuaYSaSXaSWaKPaJWaJXaJXaJXaYTaJXaJXaJXaJXaMTaLXaKPaSXaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYUaYVaVeaYWaYXagYaYYaYZaZaaZbaZcaZdaZeaZfaZgaZhaLFaTeaZiaTeaTeaZjaTeaTeaTeaTeanxawvaveaveawwaxUanxazhayCaZkaYdaZlaYfaZmaZnaZoaYdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanJaAKapTaGUaZpaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaZqaZraZsaZraZraZraZtaZuaZsaZraZraZraZsaZraZqaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaFwaMsaFAaaaaaaaaaaaaaiHaaaaaaaaaaTFaTFaTFaTFaZvaZwaVVaVVaZxaZyaZyaZzaZAaZBaZCaZDabTaHdaZEaDUaXxaXyabTaZFaZGaZHaZIaZJaZKaZLaZMaZMaZMaZNaZOaZPaZQaZRaZSaZTaZUaZVaZWaZXaZXaZXaZYakjakjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKMaKNaYSaSXaaaaaaaSWaKPaMQaZZaJXaJXaJXaJXaJXaJXaXIaKRaSXaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmagYagYaVebaababagYbacbadbaebafbagbahbaibajaWGbakbalbambanaISbaobapbaqbarbasbatbauawvaveaveawwazganxazhayCaHRbavbawbaxbaybazbaAaYdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanJaAKagbaaaaGUbaBaJiaaaaaaaaabaCbaCbaCbaCbaCaaaabmaaaaZqbaDbaDbaDbaDbaDbaEbaFbaDbaDbaDbaDbaDbaGbaHaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaGkbaIaKubaJbaKaaaaaaaaaaiHaaaaaaaaabaLbaMbaNbaObaPaVTaVVbaQbaRbaSaVVbaTaZAbaUaZCaHXabTbaVbaWaDUaXxaXyabTbaXbaYbaZbbabbbbbcaXzaTLbbdaTLaTLbbeaWpaWpbbfaXEbbgbbhaXEaWsaYQaYQaYQaWsakjaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaMMaLXaSXaaaaaaaaaaaaaSWaJVaLXaMQaJXbbiaJXaJXaLWaIFaSXaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaagYbbjbbkbblagYavybbmaXTbbnbbobbpbbqaXTbbraTdbbsaMZbbtaMZaMZaNabbubbvbbwbbxbauawvaveaxTawwaxUanxbbybbzbbzbbAbbBbbCbbDaZnbbEaYdaaaaaaaaaaaaaaaaaaaaaaaaaaaanJaAKapTaaaaaaaGUbaBaJiaaaaaabaCbaCbbFbbGbbHbaCbaCbaCaZqaZqbbIbbJbbKbbLbbIbbMbbNbbIbbIbbIbbIbbIbbObaHaaaabmaaaaaaaaaaaaaaaaaaaaaaaabbPaHXaKubbQbbPaaaaaaaaaaiHaaaaaaaaaaTFbbRbaMbaLaVVaVVbbSbbTbbUbbVbbWbbXaZAbaUbbYbbZabTbcabaWbcbbccaXyabTbcdbcebcfbcgbchbcibcjbckbckbclaTLbcmbcnbcobcpaTLaXEaXEaTLaXFbcqbcrbcsaXFadoaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSWaSXaaaaaaaaaaaaaaaaaaaaaaSWaJVaIFaIFaIFaIFaSXaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaagYagYagYagYagYavybctaXTbcubcubcvbcwaXTbcxaQHbcyaQKbczaQKaQKbcAbcBbcCbcDbcEbauawvayxayyayzaxUbcFbcGbcFbcFbcHbcIbcIaZnaZnbcJaYdaaaaaaaaaaaaaaaaaaaaaaaaanJaAKagbaaaaaaaaaaGUbaBaJiaaabaCbaCbcKbcLbcMbcLbcLbcNbaCbcObcObcObcPbcQbcRbcObcSbcTbcObcObcObcObcObcUbaHaaaabmaYxbcVbcVbcVaYxabmabmabmbcWbcXaKubcYbcZabmabmabmaqGabmabmabmaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaTFaZAbdabdbbdcabTbddbdeaLkaXxbdfabTbdgaXzaXzbdhbdibcjaXzbckbckbdjaTLaTLbbdaTLaTLaTLacjaopaaabdkbdlbdmbdlbdnagcaryaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaagYaizaizavybbmaXTaXTaXTbdoaXTaXTaVjaTdbdpbdqbdraMbaMbbdsbaubdtbdubdvbauawvayxazfayzaAHbcFbdwbdxbdybcHbcHbdzaZnbdAbdBaYdaaaaaaaaaaaaaaaaaaaaaanJaAKapTaaaaaaaaaaDIaFwbaBaFAaDIbaCbdCbdDbdEbdEbdFbcMbcLbaCbdGbcObcObcObcObcObcObdHbdIbdJaZqaZqaZqaZqaZqbaHaaaaYxaYxaHXaHXaHXaYxaYxaaaaaaaaaaJjaMsbdKaaaaaaaaaaaaaiHaaaaaaaaaaZAabmabmabmabmabmabmabmabmabmabmabmaZAaHXbdLbdcabTbdMbdNaDUaXxbdObdPaOLbdQbdRbdSbdTbdUbdRbdVbckbckbckbckbckbdWbdXbdYacjaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmaaaaaaaaaahOaizaizavyawrbdZaXTbeabebbecbeaaVjaTdbdpbdqbdraPjaMbbdsbaubedbeebefbauawvayxazTayzaxUbcFbegbehbehbeibcHbejbekbelaYdaYdaaaaaaaaaaaaaaaaaaanJaAKagbaaaaaaaaaaGUbembenbeobepbeqberbesbetbeubcLbevbewbexbeybezbezbezbezbezbeAbezbeBbeCbeDbeEbeFbeGbeHbaHaaaaaabcVbeIaHXbeJaHXaHXaYxaYxaYxaYxaYxbeKbeLaYxaYxaYxaaaaiHaaaaaaaaaaZAabmbeMbeMbeMbeMbeMbeMbeMbeMbeMabmaZAaHXbdLbdcabTbeNaOLaDUaXxbeOaeuaeubePbeQbeRbdTbdUbeSbckbckbeTbeTbckbckbeUbdXbdYacjaopaaaaaabeVbeWbeWbeWbeXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaagYapIaizavyawrbeYaXTbeZbfabfbbfcbfdbfebcybffaQKaQKaQKbfgbfhbaqbfibaqbauawvaveaAGawwaxUbcFbfjbfkbflbfmbcHbcHbcHaYdaYdaaaaaaaaaaaaaaaaaaanJaAKapTaaaaaaaaaaaaaGUbaBaKxaKraKqaKqbaCbfnbcMbfobfpbfpbfqbfrbfsbfsbfsbfsbfsbfsbfsbfsbftbfubfvbfwbfxbfybfzbaHaaaaaabcVaHXbfAbfBbfCbfDbfEbfFbfDbfGbfHaKubdcaHXbfIaYxbfJbfKbfLaYxbcVaZAabmbeMbfMbfNbfObfPbfQbfRbfSbfTbfUbfTbfVbfWbfXabTbaWbfYbfZaXxbeOaeuaeubgabdRbgbbdTbgcbdRbckbckbeTbeTbckbckbgdbdXbdYacjaopaaabgebgfbggbggbggbgfbghaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaabgibgibgiagYagYagYavyawrbgjbgkbglbgmbgmbgmbgnbgobgpbgqbgrbgrbgsbgtbgubgubgvbgwbgxaxmaveaveawwbgybgzbgAbgBbehbehbgCbehbgDbaHaaaaaaaaaaaaaaaaaaanJaAKagbaaaaaaaaaaaaaaaaGUbaBaJiabmaaaaaabaCbaCbgEbcLbcMbcLbgFbcNbfsbgGbgHbgIbgJbgKbgLbfsbgMbgNbgObgPbgQbgRbgSbaHaaaaaabcVaHXbgTbgUbgVbgVbgVbgVbgWbgXbgYbgZbhabhbbgUbhcbhdbhebhfbhcbhgaZAabmbeMbhhbhibhhbhjbhkbhkbhkbhlbhkbhkbhmbhnbhobhpbaWbhqayybhrbeOaeuaeubgabhsbdSbdTbhtbdRbhubckbeTbeTbckbckbhvbdXbdYacjaopaaabhwbhxbhybhybhybhzbhAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmbgibhBbhCbhDbhEbhFbhGbhHbhIbhJbhKbhLbhLbhMbhNaLabhOaKZbhPbhQbhRbhSbhTaOwaOwbhUbgxaxmaveaveawwbhVbhWbhXbhYbehbhWbhZbhYbehbiaaaaaaaaaaaaaaaaanJaAKapTaaaaaabibbicbicbicbibbidakjabmaaaaaaaaabaCbaCbiebifbigbaCbaCbfsbihbiibijbikbilbimbinbiobipbfvaZqaZAaZAbaHbaHaaaaaaaYxaYxbdLbdcaHXaYxaYxaYxbiqbirbisbirbitbirbiuaYxajlaKyajlaYxaZCaZAabmbeMbhhbhhbhhbivbiwbixbiybizbiAbizbiBbiCbiDabTbiEbhqazfbhrbiFaBkbiGbiHbiIbiJbiKbiLbiMbiNbckbckbckbckbiObckbdXbdYbdYbdYbiPbiQbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhFbiRbiRbiRbhFbiSbiSbiSbiTbhFbiUbiVbiWbiVbiXbiYbiZbiZbjabjbbjcbjdbiZaLAbjebjfaLAbjgaLAaLAaLAbjhaveaveawwbhVbhWbhXbhYbehbhWbhZbhYbehbiaaaaaaaaaaaaaanJaAKapTaaabibbicbibbjibjjbjkbibbjlbibabmaaaaaaaaaaaabaCbaCbaCbaCbaCaaabfsbjmbjnbjobjpbjqbjrbjsbjtbjubfvaZqbjvaZAaZAaaaaaaaaaaaaaYxbdLbeLaYxaYxaaaaYxaYxbcVaYxaYxaYxbcVaYxaYxaaaaiHaaabcVaZCaZAabmbeMbeMbeMbeMbeMbeMbeMbeMbeMabmaZAaHXbdLbdcabTbjwbhqazTbhrbeOaeubjxbjybhsbjzbjAbjBbdRbjCbckbeTbckbjDbjEbjEbjEbjFbjEbjEbjGbjHbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbhFbiRbhFbjIbjJbjKbhFbjLbhFbiSbiSbjMbjNbiVbjObjPbjQbiYbjRbjSbjTbjUbjVbjWbiZbjXaIUbjYbjZaIRbkabkbaLAawvavebkcbkdbkebkfbkgbhYbehbhWbhZbhYbehbiaaaaaaaaaaanJaAKapTaaabibbibbkhbkibkjbkkbklbkmbknbibbibaaaaaaaaaaaaaaaabmabmaaaaaaaaabfsbkobkpbkqbgIbkrbksbfsbktbkubkvbkwbkxbkybkzbkzbkzbkzbkzbfEbkAbkBaYxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiHaaabcVaZCaZAabmabmabmabmabmabmabmabmabmabmabmaZAaHXbdLbdcabTbaWbkCbkDbkEbkFaDobkGbkHbkIbkJbkKbkLbdRbkMbckbkNbkObckbckbckbdXbkPbkQbkRbkPbkSbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhFbhFbkTbkUbkTbkVbkUbkTbkUbhFbhFbhFbkWaMUbkXbjObkYbkZbiYblablbblcblbbldblebiZaVjbdpblfblgblhblibljaLAawvaveblkawwbhVbhWbhZbhYbehbhWbhZbhYbehbiaaaaaaaanJaAKagbaaabibbibbklbllblmblmblnblmblmbloblpbibbibaaaaaaaaaaaaaaaabmabmaaaaaabfsblqblrblsblqblqblqbfsbltbgNblublvblwbgVbgVbgVbgVbgVblxbgVblyblzaYxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanJarAaaabcVaZCaZAaZAbcVbcVbcVbcVbcVbcVbcVbcVbcVaZAaZAaHXbdLbdcabTblAblBblCblDblEblFblGblHblIblJblKblLbdRbckblMblNblOblPblPblPblQblRblSbdYblTbiQblUbhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbhFblVblWblXblWblVblXblWblXblVbhFblYavyawrbiWbjObkYblZbiYbmablbblcblbbldbmbbjdaVjbdpblfaMbaMbaMbaMbbmcaxmaveblkawwbhVbhWbhZbmdbehbehbehbehbmeakjaaaanJaAKapTaaaaaabicbmfbklbmgblpbmhbklbmibmjblobmkbmlbicaaaaaaaaaaaaaaaaaaabmabmaaabfsbmmbmnbmobmpbmqbmrbfsbltbfubfvbmsbmsbmsbmsbmsbmsbmsbmsbmtaYvaZCaYxaYxaYxaaaaaaaaaaaaaaaaaaaaaaaaanJaAKapTaaaaYxbmubhgaHXaHXaHXaHXaHXaHXaHXaHXbmvaHXbmwbmxaHXbdLbmyabTaDTaDUaDUaXxbmzaBkaBkbmAbmBbmCbmDbmEbmFblPbmGbmHbmIbckbmJbckbdXbkPbmKbkRbkPbmLbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmbiRbmMbkTbmNbmOblVbmNbmObkUblVbhFblYavyawrbiWbjObkYbmPbiYbmQblbblcblbbldbmRbmSaVjbdpblfaMbaMbaMbaMbbmcaxmaveblkawwbhVbhWbhZbhYbehbehbehbcFbcFakjanJaAKapTbibbibbibbibbmTbmUbklbklbklbmVbmWbklbmXbmYbmZbnabnabnbbnabncaaaaaaaaaabmabmbfsbndbnebnfbngbnhbnibfsbftbgNbgObnjbnkbnlbnmbnnbnobnpbmsabmaYvaZCaYxbnqaYxaYxaYxaaaaaaaaaaaaaaaanJaAKapTaaaaaaaYxaHXbmubgVbgVbgVbgVbgVbgVbgVbgVbgVbgVbgVbgVbgVbnrbnsabTaDTaDUaDUaXxbntbnubePbnvbnwbnxbnybnzbnAbnBbnCbnDbckbnEbnFbnFbnFbnGbnFbnFbnHbnIbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmbiRbnJblWbnKbnLbnMbnNbnObnPblVbhFbhFayYawrbiWbjObnQbmPbiYbnRbnSbnTblbbnUbmbbjdaVjbnVblfbnWbnWbnWbnXaLAaxmavebnYbnZboabobbobbocbehbehbgDbcFbodanJaAKapTbibbibboebofbogbohbohboibojbohbokbokbohbohbohbohbolbohbohbombonaaaaaaaaaaaaabmbfsboobmnbmobnibnibnibfsbltbfubfvbmsbopboqboqborbnobosbmsabmbotaZCaYxaYxaYxbouaYxaYxaaaaaaaaaanJaAKapTbovbowbowbovboxbovbovbovbovbovbovbovbovbovbovbovbovbovbovbdLboyabTaDTaDUaDUaXxbozboAboBboBboBboBboCboDboEboFboGboHboIboJbckbckbdXbdYbdYbdYbiPbiQbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboKboKboKbgibgiaaabiRbmMbkTbmNbmOboLbmNbmOboMblVboNboOayYawrbiWbjObmPbmPbiYbiZboPblbblbbjUboQbjbaVjboRboSboTboTboTboTaLAaxmaveboUawwboVbcFboWboWboXboYbhZbcFaaaboZapTaaabibboebpabpbbpbbpbbpbbpbbpbbpbbpbbpbbpbbpbbpbbpbbpcbpcbpcbpdbpeaaaaaaaaaaaaaaabfsbfsbpfbpgbfsbphbpibfsbktbpjbpkbplbpmbpnbpobppbnobpqbmsabmaYvaZCaYxbprbpsbptbpuaYxaYxaaaaaaboZapTaaabovbpvbpwbpxbpxbpybpybpzbpAbpBbpBbpBbovbpCbpDbovbpCbpDbovbdLbpEabTaDTaDUbkCbpFbpGbpHbpIbpJbpKbpLbpMbpNbpObpPbpQbpRbpSbpSbpSbpSbpSbpSacjaopaaabiQbhybhybhybhybhybiQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboKboKbpTbpUbpTbgibgibgibpVblWbnKbnLbpWbpXbpYbpZbqabhFbqbayYawrbiWbjObmPbmPbqcbiZbqdblbblbblbbqebqfaVjbqgaMbaMbaMbaMbaMbbmcaxmaveboUawwbqhbcFbcFbcFbcFbcFbcFakjbqiaIabqjbibbibbpdbpbbpbbqkbqlbqmbqnbqobqpbqqbqrbqsbqtbqubqkbqvbqwbpcbpdbonaaaaaaaaaaaaaaabfsbqxbqybqzbfsbfsbfsbfsbqAbfubfvbqBbqBbqBbqBbqBbqBbqBbqBabmbotaZCaYxbpraHXaHXaHXbqCbcVaaaaaaaiHaaaaaabovbqDbqEbpxbpxbqFbqFbqFbqFbqFbqFbqFbovbqGbqHbovbqGbqHbovbdLbdcabTaFEaDUbfYbqIbqJbqKbqLbqMbqMbqNbqObqObqPbpPboGbqQbqRbqSbqTbqUbqVbdYacjaopaaabqWbqXbqXbqXbqXbqXbqYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboKboKbqZbrabqZbrbbrcbrdbrebrfbrgbrhbrgbribrjbrgbrkbrlbrmbrnbkWbrobiWbjObmPbmPbrpbiZbrqbrrblbblebjWbjdbrsaOwaOwbrtaOwaOwaOwbruaxmavebrvbkdbrwbrxbrybrybrzbrAbohbrBbrCbrDbrEbrBbohbrFbpbbqkbrGbrHbrIbrJbrKbrLbrMbrNbrObrPbrQbrRbrSbrTbpcbpdbrUbrVbrVbrVbrVbrVbfsbrWbrXbrYbrZbsabsbbfsbltbfubfvbqBbscbsdbsebsebsebsfbqBabmaYvaZCaYxaYxaYxbsgaYxaYxaYxaaaaaaaiHaaaaaabowbshbqFbpxbsibovbovbsjbsjbqFbsjbsjbovbskbovbovbslbovbovbdLbdcabTaDTaDUaDUbsmbsnbqKbsobqObqObspbqObqObsqbpPbsrbssbstbqUbsubqVbsvbdYacjaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabswbsxbrbbrbbsybrbbrbbszbgibgibgibgibgibgibgibhFbsAbsBbhFbhFbkWbsCbiWbmPbmPbmPbsDbiZbsEbsFbsFbsFbsGbiZbsHbsHbsHbsHbsHbsHbsHbsHaBNaveboUawwaxUanxbsIbsIbsJbsKbibbibajlaKyajlbibbibbpdbpbbsLbrGbsMbsNbsObpbbsPbsQbsRbqkbsSbqkbsTbsUbsVbpcbsWbjlbsXbsYbsXbsZbrVbfsbgIbgIbtabtbbtcbtdbfsbktbtebkvbtfbtgbthbtibtjbtkbtlbqBaYxaYvbtmbgVbgVbgVbgVbgVbhgbcVabmabmaqFabmabmbovbtnbtobpxbpxbtpbtqbqFbqFbqFbqFbqFbqFbqFbtrbtsbqFbttbovbdLbdcabTbtuaDUaDUbtvbtwbtxbtybqObqObtzbqObqObtAbpPbtBbqUbqUbqUbpSbpSbpSbpSacjaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboKboKbtCbtCbtCbtDbtEbtFbtGbtHbtIbtJbtKbtLbtMbtNbtObtPbtQbtRbkWbtSbiWbiWbtTbiWbiWbiZbiZbtUbtUbtVbtUbiZbtWbtXbtYbtYbtYbtZbtXbsHawvaveboUbuabubbucbudbudbuebudbudaaaaaaaiHaaaaaabibbufbpbbugbqkbqkbsQbuhbpbbuibujbukbqkbulbqkbumbunbuobpcbupbuqburburbusburburbfsbutbuubuvbtbbuwbuxbfsbltbgNbgObuybuzbuAbuBbuCbuDbuEbqBbuFbdabfDbuGbfDbfDbfDbfGbuHaYxaaaaaaaiHaaaaaabovbuIbuJbpxbuKbuLbuLbuLbuLbuLbuLbuLbuLbuMbuNbuLbuLbuObuPbuQbdcabTbuRaDUbuSbuTbuUbtxbtybqObqObtzbqObqObuVbpPbqVbqVbqUbqUbpSbuWbuXbuYbuZbuZbvabvbbvcbvcbvdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboKboKbtDbtDbtDbgibgibgibvebvebvfbvgbvhbvibvjbvkbvlbvmbvnbkWbtSbvobvobvobvpbvqbiZbvrbvrbvrbvrbvrbiZbvsbvtbvubvvbvvbvvbvwbvxbvybvzbvAaKoaKpbucbvBbvCbvDbvEbudaaaanJbvFaphaaabibbvGbvHbvHbvHbvHbvIbvJbvHbuibvKbvLbvMbvNbvMbvObvPbvQbpcbupbuqbvRbvSbvTbvUbvVbfsbfsbfsbfsbfsbvWbvXbvXbvYbvZbwabqBbsebwbbwcbwdbuDbsebqBbwebwebwebwebwebwebwebwfbwgbwhaaaanJbvFaphaaabovbwibtobpxbwjbwkbwkbwkbwkbwkbwkbwkbwkbwkbwlbwkbwkbwmbwnbwobiuabTbwpaDUbwqbwrbwsbtxbtybqObqObtzbqObqObuVbpPbpSbpSbpSbpSbpSbuWbuXbwtbwubwubwtbwvbwwbwxbwyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboKboKboKbgibgiaaaboKbvebwzbwAbwBbvebgibwCbwDbwEbwFbwGbkWbtSbvobvobvobvobvqbiZbvrbvrbwHbvrbwIbiZbwJbtXbwKbwLbtXbtXbwMbsHawvavebwNaKobwObucbwPbwPbwQbwPbudbwRbwSbwTbwUbwVbibbufbvHbwWbwXbwYbwZbxabvHbxbbxcbxdbxdbxebxdbxfbxdbxgbxhbxibxjbxkbxlbxmbxnbxobxpbxqbxrbxsbxtbxubxvbxwbxxbxybxzbqBbxAbxBbxCbxDbxEbxFbqBbxGbxHbxIbxJbxKbxLbxMbxNbxObwhbxPbwSbwTbwUbwVbovbovbovbovbovbovbovbqFbpxbxQbxRbqFbqFbqFbxSbxTbxUbxVbovbxWbnqabTaDTaDUaDUbxXbxYboBbtybqObqObtzbxZbyabybbpPbycbydbyebyfbygbyhbuXbuYbuZbuZbyibyjbvcbvcbykaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgibgibylbymbynbyobgibypbyqblVbyqbyrbysbytbyubyubyvbvobvqbiZbvrbvrbvrbvrbvrbiZbywbywbyxbyybywbywbywbsHawvaveblkaMnaMobucbyzbyAbyBbyCbudbyDbyEacjbyFbyGbibbvGbvHbyHbyIbyJbyKbyLbvHbyMbyNbyNbyObyPbyQbyRbyNbySbyTbyUbyVbyWbyXbyYbyZbzabzbbzabzcbzdbzebzfbzgburbzhbzibzibqBbzjbzkbsebsebsebzlbqBbxHbxHbxHbxHbzmbznbznbzobzpbwhbyDbyEacjbyFbyGbovbqFbzqbzqbqFbqFbzrbqFbpxbzsbztbzubzvbzwbovbovbovbovbovbxWaHXabTaDTaDUaDUaXxaXyboBbzxbzybzxbzzbzxbzxbzAbzBbzCbuWbzDbzEbzFbuWbuXbuZacjaopaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgibgibzGbzHbvebgibzIbyqblVbzJbzKbzLbzMbzNbzObzPbzQbzRbiZbiZbiZbiZbiZbiZbiZbzSbtXbzTbzUbzVbzWbzXbsHaGjaveblkaNgbzYbucbyzbzZbAabAbbudbAcbAdbAebAfbAgbibbpdbvHbAhbAibAjbAkbAlbvHbqkbAmbAmbAnbAobAnbAmbAmbApbpcbAqburbArbAsbAtbAubAvbAwbAxbAybAzbAAbABbACburbADbAEbAEbAFbAGbAHbAIbuDbsebAJbqBbxHbAKbALbAMbANbAObAPbAQbARbwhbAcbAdbAebAfbAgbovbASbATbAUbtobqFbAVbqFbpxbzsbAWbqFbqFbAXbovbAYaHXaHXbsgbxWaHXabTaDTaDUaDUaXxaXyboBboBboBboBboBboBboBboBboAbAZbBabBbbBcbBdbBebuXbuZacjaopaaabBfbBgbBgbBgbBhbBgbBgbBgbBiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabXabYabYabYacibgibgibgibBjbgibnMbBkbBlbBmbBnbBobBpbBqbBrbBsbBtbBubBvbBwbBxbBvbBybBzbsHbBAbtXbBBbBCbBDbtXbBEbsHawvaveblkawwaxUbucbyzbBFbyzbBGbudbBHbBIbBJbBKbBLbibbpdbvHbBMbBMbBNbBMbBObvHbsLbAmbAmbBPbBQbBRbAmbAmbqkbpcbBSburburbBTburburburbBUbBVbBWburbBXbAAbBYburbzhbzibzibAFbBZbsebCabxEbsebsebqBbxHbxHbxHbxHbCbbCcbCcbCdbCebwhbCfbBIbBJbBKbCgbovbASbChbCibtobqFbAVbqFbpxbzsbCjbCkbqFbClbovbfIaHXbCmaYxbxWaHXabTbCnaDUaDUaXxbCobCpbCqbCqbCqbCqbCqbCrbCqbCqbCsbCtbCubCvbCwbCxbCybuZbuZbuZbvabCzbCAbCBbCCbCBbCCbCBbCCbCDbCEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagcajlajlajlajlajlajlbCFbgibgibiRbiRbhFbCGbCGbCGbCGbCGbCHbCIbCJbCGbBvbBvbBvbBvbBvbCKbsHbCLbCMbCNbCObCPbCQbCRbsHawvaveblkawwaxUbucbCSbwPbCTbCUbudbCVbCWbCXbCYbCZbibbpdbvHbDabDbbDcbDdbDebvHbDfbqkbqkbqkbqkbDgbqkbqkbDfbpcbDhburbDibDjbDkbDlbDmbDnbDnbDoburbDpbDqbDrburbDsbDtbDtbAFbDubDvbDwbDxbsebsebqBbDybxHbDzbDAbDBbDCbDDbDEbDFbwhbDGbCWbCXbCYbDHbovbDIbDJbDKbqFbqFbzrbqFbpxbzsbDLbDMbDNbDObovbfIbDPbuFaYxbxWbmvabTaFEaDUaDUbDQbDRbDSbDTbDTbDUbDVbDWbDVbDVbDVbDXbDYbDTbDTbDTbDZbEabwtbwubwubwtbEbbEcbEcbEcbEdbEcbEcbEcbCzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEebEfbEgbEhaaaaaaadoacjbEibCHbCIbBtbCGbEjbEjbEjbEjbEjbEjbsHbsHbsHbEkbElbsHbsHbsHbEmawvaveblkawwaxUbEnbEobEpbEqbEpbEobErbEsbEtbEubEvbEwbExbvHbvHbEybEzbEybvHbvHbEAbEAbEAbEAbEBbEAbEAbEAbEAbpcbECburbEDbEEbEFbEFbEFbEFbEFbEGburburburburbEHbEIbEJbEJbEKbqBbqBbqBbqBbqBbqBbqBbELbEMbELbwebwebwebELbENbEObwhbErbEsbEtbEPbEQbovbovbovbovbovbovbovbzrbERbESbzrbovbovbovbovbETbETbETbETbEUbETbEVaDTaDUaDUaDUbEWbEXbEXbEXbEYbEZbFabEXbEXbuWbAZbFbbFcbFcbFdbFebEabuZbuZbuZbyibCzbFfbCBbCCbCBbCCbCBbCCbCDbCEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFgbFhbFibFibFhbFjbFkbFlaaaaaaadoacjbEibFmbFnbFobFpbFqbFqbFqbFqbFqbFqbFrbFsbFsbFtbFubFvbFwbFwbFxaYbaveblkawwbFyavObFzbFAbFBbFCbFDbFEbFFbFEbFEbFEbFDbFDbFDbFGbFCbFHbFAbFIbFJbFAbFAbFAbFAbFAbFAbFAbFAbFAbFJbFKbFJbFJbFJbFLbFJbFJbFJbFJbFJbFJbFJbFJbFJbFLbFMbFNbFNbFObFNbFNbFPbFQbFRbFSbFTbFJbFJbFJbFUbFJbFJbFJbFVbFWbFDbFEbFXbFYbFZbFYbFJbFJbFJbFJbFJbFJbFJbFJbFJbFKbFJbFJbFJbGabGbbGcbFSbFTbFJbGdbFzbGebGfaDUaDUaDUbGgbGhbGibEXbGjbGkbGlbGmbGnbGobGpbGqbGrbGsbGtbFebEabuZacjaopaaabGubBgbBgbBgbBhbBgbBgbBgbGvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEhbFgbFhbFibFhbGwbGxbGybGzbGAbGBbFkbFlaaaaaaadoacjbEibCHbGCbGDbGDbGDbGDbGDbGDbGDbGDbGEbGDbGDbGDbGFbGGbGGbGGbGHaWSaWSbGIbGJaWSbGKbGLbGMbGMbGMbGMbGMaBkbGMbGMbGMbGMbGMbGMbGNbGObGObGObGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGPbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGQbGRbGSbGTbGUbGVbGWbGMbGXbGYbGZbHabHbbGMbGMbGMbGMbGMbGMbGMbHcbHdbHdbHdbHebHebHfbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGPbGMbGMbGMbGXbGYbGYbHabHbbGMbHgbGLbHhaBkaOLaDUaDUbGgbGhbHibEXbHjbuWbHkbHlbEXbuWbAZbGqbGqbGsbGtbFebEabuZacjaopaaabBfbBgbBgbBgbBhbBgbBgbBgbBiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHmbFhbFhbFhbFibFhbFibHnbHobHpbHqbGBbHrbHsbHtbHubGBbFkbFlaaaaaaadoacjbEibCHbHvbvobvobvobvobvobvobvobvobHwbvobvobvobvobvobvobvobCGbHxavebHybHzbHzbHAbHBbHCbHDbHDbHDbHDbHDbHDbHDbHDbHDbHDbHDbHEbHFbHGbHHbHIbFYbFYbFYbFYbFYbFYbFYbFYbFYbFYbFYbHJbFYbFYbFYbFYbHKbFYbFYbFYbFYbFYbFYbFYbHLbHMbHNbHObHPbHQbHRbFYbFYbFYbHSbHJbFYbFYbFYbFYbFYbFYbFYbFYbFYbFYbFYbHTbHFbHGbHHbHIbFYbFYbFYbFYbFYbFYbFYbFYbFYbHJbFYbFYbFYbFYbFYbHKbHJbFYbFYbHUbHBbHVbHWawHblCbHXbGgbGhbGibEXbHYbHZbIabIbbEXbIcbAZbIdbGqbGsbGtbFebEabuZbuZbuZbvabCzbIebCBbCCbCBbCCbCBbCCbCDbCEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIfbIgbIhbHpbHqbIibHpbHqbIibHpbHqbGBbIjbHsbHtbHubGBbFkbFlaaaaaaadoacjbEibCHbHvbvobvobvobvobvobvobvobvobHwbvobvobvobvobvobvobIkbGHaWSaWSbIlaWSaWSbGKbGLbImbInbInbIobIpbGMbGMbGMbGMbGMbGMbGMbGMbIqbIqbIqbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbIrbGMbGMbImbInbIsbIobIpbGMbGMbGMbGMbGMbGMbGMbGMbGMbItbGMbGMbGMbGMbGMbGMbIubGMbGMbGMbGMbGMbGMbGMbGMbIvbGMbGMbIwbIqbIqbIqbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMbIxbGMbGMbGMbGMbGMbIybIubGMbGMbGMbGLbHhaBkbIzaOLbIAbIBbEXbEXbEXbICbIDbEYbEXbEXbuWbAZbIEbIFbIEbFdbFebEabwtbwubwubwtbEbbEcbEcbEcbEcbEcbEcbEcbCzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIGbIgbIhbHpbHqbIibHpbHqbIibHpbHqbGBbIHbHsbHtbHubIIbEfbEgbIJbEibEibEibEibFmbIKbILbvobIMbINbIObIPbIQbIQbIRbINbISbINbINbITbINbIUbIVbIWbIXbIYbIZbIZbJabJbbJcbJdbJebJfbJgbInbJhbInbInbInbJibJjbGMbGMbGMbGMbGMbJkbJibInbInbInbInbInbJhbJibInbInbInbJlbJmbJnbJobJpbJfbJqbInbInbJibInbInbInbInbIpbGMbJrbInbInbInbInbInbInbInbInbInbInbInbJsbJsbJsbJtbGPbGMbGMbGPbInbInbInbInbJibInbInbInbInbJhbInbInbJibInbInbInbInbInbInbIsbInbJibInbInbJbbJubJvbJwbJxbJybJzbJAbJBbJBbJCbJDbJDbJEbJDbJDbJFbJGbCqbCqbCqbJHbJIbuZbuZbuZbyibCzbFfbCBbCCbCBbCCbCBbCCbCDbCEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIfbJJbIhbHpbHqbIibHpbHqbIibHpbHqbGBbJKbJLbJMbJNbJObHpbJObJPbJQbJQbJQbJPbCHbHvbvobvobJRbCGbJSbJTbJTbJUbJVbJTbJTbJWbJXbzRbJYbJZbKabKbbJYbucbucbucbucbEobEobEobEobEobEobEobEobEobEobEobEobKcbFYbFYbFYbKdbFEbKebKfbKgbKhbKibKjbKjbKkbKlbKmbKnbKnbKobKnbKnbKnbKnbKnbKnbKnbKnbKnbKnbKnbKnbKpbKqbKrbKsbKtbKubKubKvbKvbKvbKubKvbKvbKvbKvbKubKwbKwbKubKxbFYbFYbHJbKybKzbKzbKAbKzbKzbKzbKAbKzbKzbKzbKAbKzbKBbKBbKBbKBbKBbKBbKCbKBbKBbKBbKBbKBbKBbKBbKDbKEbIAaeubKFbuWbuWbKGbKHbuWbAZbuWbKIbDTbDTbKJbKKbDTbKLbEabuZacjaopaaabGubBgbBgbBgbBhbBgbBgbBgbGvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKMbKNbFjbHpbHqbIibHpbHqbIibHpbHqbKObFhbKPbKQbFhbKRbFibEfbIJbEibEibEibKSbCHbHvbvobvobKTbCGbKUbJTbKVbKWbKXbKYbKZbJWbLabLbbJYbLcbLdbLebJYbLfbLgbLhbLibLfbLjbLkbLlbLmbLnbLobLpbLpbLpbLqbJYbLrbFYbFYbFYbLsbLtbLubKkbLvbLwbLxbLybLzbLAbLBbLCbLDbLEbLFbLGbLHbLGbLGbLGbLGbLGbLGbLGbLGbLGbLIbKnbKqbKrbKsbKubLJbLKbLKbLKbLLbLMbLKbLNbLObLPbLKbLKbLKbKubHJbFYbFYbHJbLQbLRbLSbLSbLTbLRbLSbLSbLSbLRbLTbLSbLSbKBbLUbLVbLWbLXbLYbLZbMabMbbMcbMdbMebMfbMgbKBbMhbIAatCbMibMjbMjbMkbMjbMjbMlbMjbMmbMjbMjbMibMjbMnbMobMkbMpbMpbMpbMpbMpabmabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabJObHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbMqbHpbHpbMrbJPbJQbJQbJQbJPbCHbMsbMtbMubMvbCGbKUbJTbMwbMxbMybMzbMAbJWbLabMBbJYbMCbMDbMEbJYbLfbMFbMGbLibLfbLjbMHbMIbMJbMKbMLbMIbMIbMIbMMbJYbLrbFYbFYbFYbLsbLtbLubMNbMObMPbMQbMRbMSbMTbMUbMVbMWbMXbMYbMZbMZbMZbMZbMZbMZbMZbNabMZbMZbNbbNcbKnbKqbKrbKsbKvbLKbNdbNebNebNebNebNebNebNebNebNfbLKbLKbNgbHJbFYbFYbHJbLQbLSbNhbNibNhbLSbNhbNibNhbLSbNhbNibNjbKBbNkbNlbNmbNmbNmbNmbNnbNobNmbNmbNmbNpbNqbNrbNsbIAatCbMjbNtbNubNvbNwbNxbNybNzbNAbNBbNCbNCbNCbNDbNEbNFbNGbNHbNIbNIbMpbMpbMpabYabYabYabYakjabYabYabYbNJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGBbNKbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbHpbJObJPbJQbJQbJQbJPbCHbNLbNMbNNbKTbCGbKUbJTbNObNPbNQbMzbNRbJWbLabNSbJYbNTbNUbNVbJYbLfbNWbNXbLfbLfbLjbNYbMIbNZbOabLobMIbMIbMIbObbJYbOcbFYbFYbFYbLsbLtbLubOdbOebOfbOgbOhbOibOjbOkbMVbMZbOlbOmbOnbOnbOobOpbOpbOobOnbOqbOnbOnbOrbOsbKnbKqbKrbOtbOubOvbOwbOxbOxbOxbOybOxbOxbOxbOxbOzbLKbLKbNgbHJbFYbFYbHJbLQbNhbOAbLSbOBbNhbOAbLSbOBbNhbOAbLSbOBbKBbOCbODbOEbOFbOGbOHbOIbOHbOGbOJbOKbOLbOMbKBaDTbIAatCbMjbONbOObOObOPbOQbORbOSbOTbMjbMjbOUbOVbOWbOXbOYbOYbOZbNIbNIbNIbOUbMpbMpajlajlakjakjakjajlajlaryaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFgbFhbKRbFhbPabFhbPbbPcbPdbPdbPebPbbFhbPfbPfbFhbPbbFibEfbIJbEibEibEibKSbCHbPgbPhbPibPjbCGbKUbJTbMzbPkbPlbMzbNRbJWbPmbaHbJYbPnbPobPpbJYbLjbPqbPrbPsbPsbPsbPsbPtbPubPvbPsbPsbLjbLjbLjbJYbPwbPxbPxbPybPzbLtbLubPAbKmbPBbPCbPDbLCbLCbLCbLCbPEbPFbKnbKnbKnbKnbKnbKnbKnbKnbKnbKnbKnbOrbOsbKnbPGbKrbPHbKvbLKbPIbPJbPKbPJbPJbPJbPJbPJbPJbPLbLKbLKbNgbHJbFYbFYbHJbLQbNhbNhbPMbPNbPNbPNbPNbPObPPbNhbNhbPQbKBbKCbPRbKBbKBbPSbKBbKBbKBbPSbKBbKBbPTbKCbKBaDTbIAatCbMjbPUbOObOPbPVbPWbOTbOTbMmbMjbNIbNIbNIbPXbPYbPZbQabQbbQcbNIbQdbQebQfbMpbMpaaaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFibQgbQhbQibHpbQjbGBbQkbQlbQlbQmbGBbQnbQobQobQobJObHpbJObJPbJQbJQbJQbJPbCHbHvbvobvobQpbCGbKUbJTbJTbJTbJTbJTbJWbJWbJYbJYbQqbQrbQsbQtbQtbQtbQubQvbPsbPtbQwbQxbQxbQybQzbQAbPsbQBbQCbQDbKnbQEbQFbQGbQHbKnbKnbKnbKnbQIbQJbQKbQLbQMbQNbQNbQObQPbQQbQRbQPbKnabmabmabmabmabmabmaaabQGbOrbOsbKnbKqbKrbQSbKubQTbLKbQUbQVbQWbQXbQYbLKbLKbLKbQZbRabRbbKubHJbRcbFYbRdbRebRfbRgbRgbRgbRgbRhbRibRjbRkbNhbNhbRlbKBbRmbRnbRobRpbRpbRpbRqbRpbRpbRpbRrbRsbRtbKBaDTbIAatCbMjbRubOPbPVbPVbRvbRwbRxbRybRzbRAbRBbNIbNIbRCbRDbREbQbbRFbNIbRGbRHbQfbQfbMpaaaabmabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFibRIbQjbHpbHpbQjbGBbRJbQlbQlbQmbGBbRKbQobQobRLbIIbEfbRMbIJbEibEibEibEibCHbHvbvobvobKTbCGbKUbLjbLfbRNbRObRPbJYbRQbRRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRYbPtbRZbSabPtbPubPtbSbbPsbScbSdbSebKnbSfbSgbShbSibSjbSkbSlbSmbSnbSobSpbSqbSpbSpbSpbSrbSpbSsbQPbQPbStabmbSubSubSubSubSuabmbQGbSvbSwbKnbKqbKrbPHbKubSxbNdbNebNebNfbSybNebNebNfbSzbKubKvbKubKubSAbSBbSCbSDbSBbSBbSEbSFbSFbSGbSHbSFbSIbSJbNhbRibSKbKBbSLbSMbKBbSNbSObRpbRpbRpbRpbSPbKBbSQbSRbKBaDTbIAatCbMjbSSbSTbSTbSTbRxbSUbMjbMjbRCbNIbRAbSVbNIbRCbSWbSXbSYbNIbNIbQcbNIbNIbQfbMpbMpabmabmabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFibSZbTabTbbHpbQjbGBbTcbTdbQlbQmbGBbRKbQobQobRLbGBbFkbFlaaaaaaadoacjbEibCHbTebTfbvobTgbCGbKUbLjbLfbThbTibLfbTjbRWbTkbTlbTmbTnbTobTpbTqbTqbTrbTsbPsbTtbPvbPtbPtbPubPtbTubPsbTvbSdbTwbKnbTxbTybTzbTAbTBbTCbTDbTEbTFbTGbTHbTIbQPbTJbTKbTLbTKbTMbTKbTNbTObTPbTQbTRbTSbTTbSuabmbQGbOrbSwbTUbKqbKrbTVbKubTWbOwbOxbOxbOzbTXbOxbOxbOzbTYbSBbTZbUabUbbUcbUdbUebUebUebUfbNhbNhbNhbNhbUgbNhbUhbSJbNhbRibUibKBbUjbUkbRobRpbRpbRpbRpbRpbRpbRpbRrbUlbUmbKBaDTbIAatCbMjbUnbUobUpbUqbUrbUrbMjbNIbRCbNIbRFbNIbRFbRCbRDbREbQbbRFbNIbRFbNIbRFbQfbQfbMpaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUsbFhbFhbFhbFibFibKRbFjbUtbUubUvbGBbRKbQobQobRLbGBbFkbFlaaaaaaadoacjbEibCHbHvbvobvobUwbCGbKUbLjbLfbUxbUybUzbUAbUBbUCbUDbUEbUFbUGbUHbUIbUJbUJbUJbUJbPtbUKbULbUMbUNbUObUObUPbUQbURbUSbKnbUTbUUbUVbUWbUXbUYbUZbQGbVabVbbVcbVdbVebVfbQPbVgbVhbVibQPbVjbStabmbVkbVlbTTbVmbSuabmbQGbOrbSwbVnbKqbKrbTVbKwbLKbOwbOxbVobOzbVpbVqbVrbVsbVtbVubVvbVwbUebUebUebUebUebUebSBbVxbVybVzbVAbVBbVCbVDbVEbVFbRibSKbKBbVGbVHbKBbVIbVIbVIbVIbVIbVIbVIbKBbVJbVKbKBbVLbIAbVMbMjbUnbVNbVObVPbVQbVQbVRbVSbVTbVUbVVbVVbVVbVWbVXbVYbVZbVVbVVbVVbWabWbbNIbQfbMpaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEhbUsbFibFhbFhbGwbWcbQobQobRLbGBbFkbFlaaaaaaadoacjbEibCHbHvbvobvobPjbCGbKUbWdbLfbLfbWebWfbWgbWhbWhbWhbWibWjbWkbUIbUIbWlbWmbWnbUJbPtbUKbWobWpbWqbPtbWrbPsbWsbWtbWubKnbKnbKnbKnbKnbKnbKnbKnbKnbWvbWwbSpbSpbSsbVfbWxbWybWzbWAbWBbWCbWDbWEbTQbWFbTTbTTbSuabmbQGbOrbSwbWGbKqbKrbTVbKubLKbOwbOxbOxbOzbWHbWIbWIbWJbWKbWLbWMbWNbWObWPbWObWQbWRbWSbSBbSBbSBbSBbSBbSBbSBbWTbWUbKzbKzbKzbKBbWVbVHbKBbWWbWXbWXbWXbWXbWXbWWbKBbVJbWYbKBaeubIAaeubMjbWZbXabSUbUrbVQbVQbVRbPXbXbbXcbXbbXbbXbbPYbPZbQabXdbXbbXbbXbbXcbXebNIbQfbMpaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabUsbFhbFibFibFhbHnbFkbFlaaaaaaadoacjbEibCHbHvbvobvobXfbCGbXgbXhbLfbXibXjbUzbXkbRQbXlbXmbXnbXobXpbXqbXrbXrbXsbXtbXubXvbXwbUObUObXxbPtbXybPsbPsbPsbLjbJYabmabmabmabmabmabmabmbStbVabVbbQPbQPbXzbXAbXBbQObXCbXDbXEbQObStabmbSubSubSubSubSuabmbQGbOrbSwbKnbKqbKrbPHbKubLKbPIbPKbPJbPLbPIbPJbPJbPLbXFbXGbXHbXIbXJbXKbWObUebXLbXMbSBbXNbXObXPbXQbXRbSBbXSbXTbXUbXVbXWbKBbKBbRobKBbXXbXYbXYbXYbXYbXYbXZbKBbYabKCbKBbYbbYcbYbbMjbMjbMjbMjbUrbVQbVQbMjbNIbNIbNIbRFbNIbRFbRCbRDbREbQbbRFbNIbRFbNIbRFbNIbNIbMpaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabYdbEfbRMbEhaaaaaaadoacjbEibCHbHvbvobvobYebCGbYfbLjbYgbThbLfbYgbYhbYibYibYjbUEbMIbYkbUIbYlbYmbYnbYobYpbYqbYrbPtbPtbPubPtbYsbPsbYtbYubYvbJYabmbSubSubSubSubSuabmbStbVabVbbQPbQPbYwbYxbYybQPbYzbYAbYBbYCbTObTPbTQbYDbYEbYEbSuabmbQGbOrbOsbKnbKqbKrbPHbYFbYGbYHbYIbYJbYKbLKbLKbYLbYMbYNbSBbYObYPbYQbVvbVvbVvbYRbYSbYTbYUbYVbYWbYXbYYbYTbYZbZabZbbZcbZdbKBbZebZfbZfbZgbZhbZhbZhbZhbZhbZibZjbZkbZlbKBbVQbZmbVQbVQbVQbVQbVQbVQbVQbVQbMjbMjbNIbNIbNIbZnbNIbRCbSWbZobSYbNIbNIbNIbZpbNIbNIbMpbMpaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabXabYabYabYabYabYbZqbZrbZrbZrbZsbZsbZrbZrbZrbZrbZrbCGbZtbZubCGbvobZvbCGbZwbLjbYgbZxbLfbZybJYbUBbUCbUDbUEbZzbZAbZBbZCbZDbZDbZEbZFbZGbZHbZIbZJbZKbPtbPtbZLbWtbZMbZNbJYabmbSubZObZObZPbZQbZRbZSbZTbZUbQPbQPbXzbQPbXAbQPbZVbZWbVfbZXbStabmbVkbZYbZZcaabSuabmbQGbOrbOsbKnbPGbKrbPHbKubKubKubKubKubKucabbKubKubKubKubSBcaccadcaecafcagcahcaicajcakcalcamcalcancaocapcaqcarcascatcaubKBcavcavcawcaxcaycaycazcaycaycaxcaxcaAcaBbKBbVQcaCcaDcaDcaEbVQbVQbVQbVQcaFbUrbMjbMjbMjcaGbMjbMjcaHbRDbOWbQbbRFbNIbNIbNIbNIbNIbMpaaaaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagcajlajlajlbZrbZrbZrcaIbZrcaJcaKcaLcaLcaLcaLcaLcaLcaLcaMcaNcaObzRbzRbzRcaPcaPcaQcaPcaRcaRbJYbLjbLjbLjcaScaTbYkbUIcaUcaVcaWcaXcaYbZGbUKcaZcbabWqbPtcbbcbccbccbcbJYbJYabmbSucbdcbecbfbVkabmbStcbgbQPcbhcbibYycbjbYwcbkbZVbZWcblcbmbWDbWEbTQcbnbYEbYEbSuabmbQGcbocbpbKnbKqbKrbPHcbqcbrcbscbtcbucbvcbwcbqcbxcbycbxbSBbSBbSBbSBbSBbSBbSBbSBbSBbSBcbzcbAcbBcbCcbDcbqcbqcbqcbqcbqcbqcbqcbqcbqbKBcbEcbFcbFcbFcbFcbFcbEbKBcbGcbHbKBbVQcbIbVQbVQbVQbVQbUrbUrbUrbUrbUrbUrbMjcbJcbKcbLbMjbRCbSWcbMcbNbNIbNIbSVbNIbNIbMpbMpaaaaaaabaabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcbOcaIcaIcbPcbQcbRcbScbTcbTcbTcbTcbTcbTcbTcbUcaOcbVcbWcaPcbXcbYcbZccaccbcccbJYbRQccdbXmbXnbRWccebUIbUIccfcaWccgbUJcchcciccjcckcclccmccnccoccpccqccrbJYabmbSubZOccscctccubZRbZSccvbQPccwcbiccxccybYwcbkbZVbZWbVfcczbStabmbSubSubSubSubSuabmbQGbOrbOsbKnccAbKrbPHccBcbwccCccCcbwccCcbwcbqccDccEccFcbqccGccHccIccJccKccLccMccNcbqccObSBccPccQccRcbqccSccTccUccVcbqccTccUccVbKBbOHccWccXccYccZcdacdbbKBcdccddcdecdfcdgcdhbVQbVQcdibUrcdjcdjcdjcdjcdjbMjcdkcdlcdmbMjcdnbSWbNIbNIbNIbNIcdocdpbMpbMpaaaaaaaaaabmabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcdqcdqcaIcaIbZrcbQcdrbZrcdscdtcdtcdtcduaaaadobiacdvcdwcdxcaPcdycdzcdzcdAcdBcdCbJYbMIbMIcdDcdEbMIcdFcdGbUIcdHcaWcdIbUJcdJcdKbQxbQxbQxbQxcdLcdMcdNcdOcdPbJYabmbSubSubSubSubSuabmbStcdQcdRcdScbicdTcdUcdVcbkbYzbYAbYBcdWbTObTPbTQcdXcdYcdZbSuabmbQGbOrbSwbKnbKqbKrbPHcbqcbwcbwcbwcbwcbwceacbqcebceccebcbqccCccCccCcbwcbwcedceeceecefcegceecegcehceicbqcejcekcelcekcbqcemcekcelbKBbOHbOHbOHbOHbOHbOHbOHbKBcenceocepcepceqcerbVQbVQcescetcdjcdjcdjcdjcdjbMjceucevcewbMjbRCcexbNIbNIbNIbNIbMpbMpbMpaaaaaaaaaaaaabmabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrceycdqcdqcaIcezbZrcbQcdrbZrceAceBceCceDceAceEceEceEceFceGceHcaPceIceJceKceLceMceNbJYbUBbUCbUDceOcePceQbMEbUIceRcaWceSbUJceTceUceUceUceVceVceWcbccbcceXcdPbJYabmbSuceYceYceZcfabTPbTOcfbcfccfdcdRcfebQPcfebQPbZVbZWbVfcffbStabmbVkcfgcfhcfibSuabmbQGbOrbSwcfjbKqbKrbPHcfkcflcfmcfmcfmcfmcfmcfncfocfpcfpcfpcfpcfpcfpcfpcfpcfqcfrcfpcfpcfpcfpcfpcfscftcbqcfucfvcfwcbqcbqcfucfxcfwbKBbKBbKBbKBbKBbKBbKBbKBbKBcfycfzbVQbVQcfAcfBcfCcfDcescetcdjcdjcdjcdjcdjbUrbUrbUrbUrbMjcfEbMkbMjbMjbMjbMjbMpaaaaaaaaaaaaaaaabmabmabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcfFcaIcaIcaIcfGbZrcfHcfIbZrcfJcfKcfKcfLcfMcfNcfOcfNcfPcfQcaPcaPcaPcaPcaPcfRcfScaRbJYbLjbLjbLjbJYcfTcfUcfVcfWcfWcfWcfXcfWcfYcfZcfYcgacfYcfYcbccbcaaacgbcgccgdabmbSuceYcgecgfbVkabmbStcggbTJcghbZVcgibQPcgjcgkbZVbZWcglcgmbWDbWEbTQcgncdYcdYbSuabmbQGbOrbSwcgobKqcgpcgqcgrcgscgtcgucgvcgvcgvcgvcgvcgvcgvcgvcgvcgvcgvcgvcgvcgwcgxcgycgycgycgycgycgzcgAcgBcfscfpcgCcfpcfpcfscgDcftcbwcgEcgFcgGcgHcbwcbwcbwcbwcgIcgJcgKcgLcgMcgNcgOcgPbVQcgQcdjcdjcdjcdjcdjcgQcgRcgSbUrcgTcgUcgVcgWcgXcgYcgWaaaaaaaaaaaaaaaabmabmabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrcaIcaIcaIcgZcaIcaIbZscbQcdrbZschachbchcchdcheceEceEceEchfchgchhchichjchkchlchmchnchochpchqchrchschtchuchvchwchxchychzchAchBchCchDchEchFchGchHchIaaaaaacgbcgccgdabmbSuceYchJchKchLbWEbWDchMchNchObZVchPchQchRchSbZVbZWbVfbQPbStabmbSubSubSubSubSuabmbQGbOrbSwbKnbKqchTbPHcbqchUcbwchVchWchXcbqcbqcbqcbqcbqcbqchYcbwcbwcbwcbwchZciacbwcbwcgHcibcbwciccidciecifcgycgycgyciecifcigcgAcfpcfpcihcfpcfpcfpcfpcfpcfrciicfzcijcikcilcilcimcincescetcdjcdjcdjcdjcdjcetciocipbUrcgTciqcgVcgWcircircgWcgWaaaaaaaaaabmabmabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrcaIcaIcaIcgZcaIcaIbZscbQcdrbZsceAcisciscitceAaaaadobaHciucaPcaPcivciwcixcixcixciycizciAcixcixciBciCciDciEciFchxciGciHciIciJciKciLciMciNciOciPchIaaaciQcgbciRcgdabmbSubSubSubSubSuabmbStciSbVfchPciTciUbQPcfebQPbYzbYAbYBciVbTObTPbTQciWciXciXbSuabmbQGbOrbOsbKnbKqchTbPHciYciYciYciYciYciYciYabmabmabmabmcbqcbqcbqcbqcbqcbwchZciacbwciZciZciZciZciZcjacjbcjcciZciZciZcjdcbwcjecidciecgycidcgyciecgycgycgycidcjfcjgcjhcjicilcilcimcincescetcdjcdjcdjcdjcdjcetcjjcipbUrcgTciqcgVcjkcircircircjlaaaaaaabmabmabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcbPbZrbZrbZrbZrbZrcjmcjnbZrcfJcjociscjpceAceEceEcaPcjqcjrchocjscjtcjucjvcjwcjwcjxcjycjwcjwcjzcaRcjAcjBcjCcjDcjEcjFcjGcjHchIcjIcjJcjKcjLcjMchIaaaciQcjNcgccgdabmbSucjOcjOcjPcfabTPbTOcjQcjRcjScjTbQPbQPcjUcjVcjWbVibVfcjXbStabmbVkcjYcjZckabSuabmbQGbOrbOsbKnbPGchTckbckcckdckeckfckgckhckcckickickiaaacbqckjckkcklckmcknckockpckqciZckrckscktciZckuckvckwckxckyciZckzcbwckAckBckCcbwckDcbqckEckFckFckFckGbUrckHckIckJckKckKckLcinbVQcgQcdjcdjcdjcdjcdjcgQbVQbVQbUrcgTciqcgVcgWcircircircjlaaaabmabmabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscaIbZsaaaaaaaaabZscbQcdrbZsceAckMciscisckNcfNcfOcfNckOckPckQckRckSckTckUckTckVckWckUckXckYckZcaRcaRchxchxclachxclbchxchIchIclccldcleclfclgchIaaaciQclhcgccgdabmbSucjOclicljbVkabmbStclkbVfchOcllclmclmclmclmcjTbZWclnclobWDbWEbTQclpciXciXbSuabmclqclrclsclqbKqcltcluclvclwclxclyclzclzclAclBclCckiaaacbqclDclEclFclGclHclIciachUciZclJclJclJciZclKclLclMciZciZcbqcfuclNclOclPcfuclQcfwcbqclRclSclSclSclTbUrclUclVclWbVQbVQbVQcincescetcdjcdjcdjcdjcdjbUrbUrbUrbUrclXclYcgVcgWclZcmacgWcgWabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscaIbZsaaaaaaaaabZscbQcdrbZsceAcmbcmbcmbceAceEceEcaPcmccmdcmecmfcmgcmhcmicmfcmgcmjcmicmfcmgcmkcaRcaRchxcmlcmmcmncmocmpcmqchIcmrcmscmtclfcmuchIaaaciQclhcmvcgdabmbSucjOcmwcmxchLbWEbWDcmychNchPcmzcmzcmAcmBcmBcmCbVibVfcmDbStabmbSubSubSubSubSuabmclqcmEcmFcmGcmHcmIcmJckccmKcmLcmMclzcmNckccmOcmPckiaaacbqcbqcbqcbqcbqcbwchZciacbwciZcmQcmRcmSciZclKclJclJcmTcmUcbqcmVclEcmWcbqcmVclEcmWcbqcmXclSclSclScmYbUrcmZcnacnbcnccndcnecnfcescetcdjcdjcdjcdjcdjbUrclXcngcnhcnicnjcnkcgWcjlcjlcgWabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscaIbZsaaaaaaaaabZrcnlcfIbZrcnmcnncnncnncnoaaaadobaHcnpcnqcnrcnpcnscntcnucmfcnvcnwcnxcmfcnycnzcnAcaRchxcnBcmmcnCcmociIcmqchIchIchIchIchIchIchIaaaciQclhcnDcgdabmbSubSubSubSubSuabmbStbVacnEcnFcnGcnGcnGcnGcnGcnHcnIcnJcnKbKnabmabmabmabmabmabmabmclqcnLcnMcnNcnNcnOcnPcnQcnRcnScnTclzcnUckcclBcnVckiaaacbqckjckkcklckmcnWckockpcnXciZclJclJclJciZclKclJclJciZciZcbqclDclEcnYcbqclDclEcnYcbqcnZclScoacobcocbUrbUrbUrbUrbUrbUrcodbUrbUrbUrcdjcdjcdjcdjcdjbUrciqcoecofcogcnkaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscaIbZsaaaaaaaaabZrcbQcdrbZrcaOcaOcaOcaOcaOcnpcnpcnpcnpcohcoicnpcojcntcokcmfcolcnwcokcmfcomconcokcaRchxciIcoociIcopciIciIcoqchxaaaaaaabmabmaaaaaaciQclhcorcgdabmabmabmabmabmabmabmbStcoscotcoucovcowcoxcoycozcllcoAcoBcoCcoDcoEabmabmabmabmabmabmclqcoFcoGcoGcoHcoIcoJcoKcoLcoMcoNcoOcoPckcckickickiaaacbqclDclEclFcoQclHcoRcoScbwciZckrcoTclJcoUcoVcoWclJcoXcmUcbqcbqcbqcbqcbqcbqcbqcbqcbqcgWcoYcgWcgWcgWcgWcoZcpacpbcpccpdcpecpfcpgbUrbUrbUrbUrbUrbUrbUrciqcphcgWcgWabmabmabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcbPbZrbZraaaaaabZrcbQcdrbZrcpicpjcpkbZraaacplcpmcpncpocppcpqcnpcaRcprcmfcmfcmfcpscmfcmfcmfcptcaRcaRchxcpuciIcpvcpwcpxciIcpychxaaaciQcpzcpzciQciQciQclhcgccgdcgdcgdcgdcgdcgdcgdcgdbKnbKncpAcpBbKnbKnbKncpCcpDbPEcpEbKnbKnbKncpFcpFcpFcpFcpFcpFcpFcpFcpGcpGcpFcpHcpIcpJcpKcpKcpKcpKcpKcpKcpKabmabmabmabmcbqcbqcbqcbqcbqcpLcpMcpNcpOcpPcpPcpPcpPcpPcpPcpPcpPcpPcpPcpPcpQcpRcpRcpRcpRcpScpTcpRcpUcpRcpVcpRcpWcpXcpXcpXcpXcpYcpXcpZcqacqbcqbcqbcqbcqbcqbcqbcqccqdcgVcgWaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcaIcaIcaIbZrbZraaabZrcbQcdrbZrcaIcaIcqebZraaacqfcqgcqhcpocqicqjcqkcaRcqlcqlcqlcqlcqmcqncqocntcqpcaRcqqchxcqrciIcqscqtcquciIcqvchxaaaciQcqwcqxciQcqycqzcqAcqBcqzcqzcqzcqzcqCcqDcqEcgdcqFcqGcqHcqIcqJcqKcqLcqMcqNcqOcqPcqQcqRcqScqTcqUcqVcqWcqXcqYcqZcracracrbcpFcrccrdcrecpKcrfcrgcrgcrgcrhcpKabmaaaaaaaaacjlcircricrjcrjcrkcrlcrmcrncrocrpcrqcrqcrqcrqcrqcrrcrscrtcgWcrucircircircircrvcrwcrxcrycrzcrzcrzcogcrAcrBcrAcrAcrCcogcogcogcrDcrDcrDcrDcrDcrDcrEcogcogcnkcgWabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscdqcdqcaIcaIcaIbZrbZrbZrcbQcdrbZrcrFcaIcqebZraaacrGcrHcrIcrJcrKcrLcrMcaRcqlcntcrNcrOcrPcrQcrQcrRcrScrTcrUchxchxchxchxchxchxchxchxchxabmcpzcrVcrVcrWcrXcrYcrZcsacsbcsbcsccsbcsdcsecsfcsgcshcsicsjcskcslcsmcsmcsncsmcsmcsocspcsmcsqcsmcspcsrcsscstcsucsucsucsucsvcpFcrccswcsxcsycszcsAcsAcsBcsCcpKabmaaacsDcsDcsDcsDcsEcsDcsDcsDcsFcsGcsHcsIcsJcsKcsLcsMcsNcsOcsPcsQcrjcsRcsScircsTcircsUcsVcrwcgVcgWcgWcoYcgWcgWcsWcsXcsYcsZctactbctccgWcgWcgWctdctdctectfctgcgWcthctictictjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscaIctkctlcaIcaIcbPcaIcaIcbQctmcbScbSctnbZrbZraaacnpcnpcnpcnpctocrLctpcaRctqctrctscttctucqlcqlctvctwcaRcaRcaRaaaabmabmabmabmabmabmabmabmciQctxctyciQctzctAciQctBciQciQctCcrVctDctEctFctGctHctIctJctKctLcsuctMctMctMctMctMctMctNctNctNctNctOctPctQctRctSctTctUctVcpFctWctXctYcpKctZcuacubcuccudcpKabmaaacsDcuecufcugcuhcuicujcukculcumcuncuocircupcircircupcircgVcuqcrtcgWcircurcuscircutcrvcrwcgVcgWcuscircircgWcuucuvcuwcuxcuyaaacuzabmaaacgWcgWcgWcgWcgWcirctgcuAcuBcuCcuDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZscaIcuEcaIcaIcaIbZrbZrbZrcuFcuGcaLcuHcuIcuJbZraaaabmabmabmcnpcuKcuLcuMcaRcuNcuNcuOcuPcuQcuRcuRcuScuTcuUcuUcaRaaaciQciQciQciQciQciQciQciQciQciQciQciQctzctAcuVcuWcuXciQctCcrVciQciQciQcgdcgdcgdcsucsucsucsucpFcpFcpFcpFcpFcpFcpFcpFcpFcsDcuYcuZcpFcpFcpFcpFcpFcpFcpFcvacpIcvbcpKcvccsycvccvccpKcpKcvdcvdcsDcvecsxcsxcsxcvfcvgcvgcvhcvicsxcvjcvjcvjcvjcvjcvjcvjcvkcvlcvlcvlcrzcrzcvmcvncvocvpcvqcvrcoYcircircircgWcvscvscvscvscuyaaacuzabmaaaabmaaacvtaaacgWcgWcgWcvucticticvvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcaIcaIcaIbZrbZraaabZrbZrbZrbZrcuFcvwcdrbZrbZsbZsbZrabmcnpcnpcnpcnpcaRcvxcvycvzcjwcvAcqlcqlcqlcvBctrcvCcaRabmcpzcvDcvEciQcvFcvGcvGcvGcvGcvGcvGcvGcvHctAcvIcvJcrVciQctCcrVciQctycrVcrVcrVcgdcvKcvKcvLcvMcpFcvNcvNcvOcvOcvOcvPcvPcvQcvRcvScvTcvUcvVcvWcvWcvXcvYcvWcvTcvZcvWcwacvWcvWcvWcwbcwccwdcvWcwecsDcsxcwfcsxcwgcwhcwicwicwjcwkcsxcvjcwlcwmcwncwocwncwocwncwpcwqcvjcircircircircircwrcwscgWcgWcgWcgWcgWcgWaaaaaaaaaaaaabaaaacuzcuzcuzcuzcuzcuzaaaaaaabmcgWcgWcgWcgWabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZsbZsbZsbZraaaaaaaaaaaaaaabZrcwtcbQcdrcbPcaIcwubZrabmabmabmabmabmcaRcwvcjwcwwcwxcvAcqlcqlctrcqlcqlcwycaRabmcpzcrVcwzciQctzcwAcwBcwBcwCcwCcwCctGcwDcwEcwFcuWcrVciQctCcrVciQcrVcwGcwGcrVcgdcwHcwHcwIcwJcpFcwKcwLcwLcwLcwLcwMcwLcvQcwNcwOcwPcwQcvgcvgcvgcvgcvgcvgcwRcwScvgcvgcvgcvgcvgcvgcwQcvgcvgcwTcsDcwUcwVcwWcsxcwXcsxcwYcwZcxacxbcvjcxccxdcxecxdcxecxdcxecxdcxfcvjcircircircircgWcwrcwsaaaaaaaaaabmabmabmabmabmabmabmabaaaaaaaabmaaaabmaaacuzaaaaaaabmaaaabmaaaabaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrcbQcdrbZrcxgcxhbZrbZrbZsbZrbZrcxicaRcxjcwwcxkcxlcvAcxmcxncxocxpcqlcxqcaRabmcpzcxrcrVciQctzcxsciQciQciQciQciQcgdcxtcgdcgdcgdcxuciQctCcrVciQcrVcxvcxwcxxcgdcgdcgdcgdcgdcgdcxycwLcwLcvOcxzcvPcvPcvQcwNcxAcwicxBcwicwicwicxCcxDcxDcxDcxEcxDcxDcxDcxFcwicwicxBcwicxGcxHcsDcxIcxIcxJcxKcxLcxMcxJculcxNcxJcvjcxOcxPcxQcxPcxQcxPcxQcxPcxRcvjcircxScgWcjlcgWcwrcwsaDIaIcaIcaIcaDIaaaaaaaaaaaaaaaabaaaacxTcxTcxTcxTaaacuzaaacxTcxTcxTcxTaaaabaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrcbQctmcxUbZrbZrbZrcxVcxWcxXbZsabmcaRcaRcxYcxYcxYcxYcxYcxYcxYcxYcxYcaRcaRabmciQcxZcyacybcyccydciQaaaaaaabmaaaaGUcyeaJiaaacgdcgdcgdcyfcygctBcrVcuVcyhcxxcgdcyicyjcykcylcgdcymcymcymcymcymcymcymcyncyocypcvgcyqcyrcyscsxcytcvbcsDcyucsDcyucsDcvbcyvcsxcywcyxcsxcyycyzcyAcyAcyBcyAcyAcyCcyAcyAcyDcyEcyFcyGcyHcyIcyJcyKcyLcyMcyNcyOcyPcvjcgWcjlcgWaaacgWcyQcyRcyScyScyScyScyTaJiaaaaaaaaaabbabaaaacyUcyVcyVcyVcyWcuzcyXcyYcyYcyYcyZaaaabaabbabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrczaczbcuIczcczdbZrczecaIczfbZsabmaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmcxiabmabmcpzcrXczgcrYczhcziciQaaaaaaabmaaaaGUcyeaJiaaaaaaaaacgdczjcgdcgdcrVcrVcrVcrVczkcrVcrVczlczmcgdcznczoczpczqczqczrczscztczuczvcsxczwczxczycsxczzcsDczAczBczCczBczDcsDczEcsxczFczGcsxczHcwicwicwicwicwicwicwicwicwiczIcwiczJczKczLczMczLczNczOcyPczPcvjcvjcvjcgWaaaaaaabmcgWcgVcgWaFfaFfaFfczQczRaJiaaaabaabbabbczSaaaczTczTczTczTaaacuzaaaczTczTczTczTaaaabmabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrczaczUczVczWbZrcaIcaIcaIbZrabmabmaaaaaaczXaaaaaaaaaaaaabmabmabmciQciQciQcxZcyccwAczYciQciQaaaaaaaaaabmaaaaGUcyeaJiaDIaDIaDIaGUczZaJicgdcgdcgdcgdcrVczkcrVcrVcrVcrVcgdcAaczqczqcAbcAccAdcAecAfcAgcAhcsxcsxcsxcsxcsxcAicAjcAkcwLcAlcwLcAmcAjcAncsxcsxcsxcsxcAhcsxcsxcsxcsxcsxcsxcsxcsxcsxcsxcsxcAocvjcApcAqcArcAscvjcvjcvjcvjaaaaaaaaaaaaabmcgWcgWcAtcgWcgWaaaaaaaGUczRaJiaaaabaaaaaaaaaaaaaaaaabmaaaaaaaaacuzaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrczaczUctmcbScxUcbPbZrbZrbZrabmaaaaaaaaaaaaaaaaaaaaaabmciQciQciQcqycqzcAucAvczYciQciQabmabmabmabmabmaaaaGUcyecAwcAxcAycAzcAAczZaJiaaaaaaaaacgdcgdcgdcgdcgdcABcrVcgdcACczqcADcAEcAFczqcAGcAHcAIcAJcAKcALcAMcANcAOcAPcsDcAkcAQcARcAScAmcsDcATcAUcAUcAVcAWcAVcAXcAYcAZcBacBbcBacBacBacBccAVcAVcBdcvjcvjcvjcvjcvjcvjabmaaaaaaaaaabmabmabmcgWcgWcircgVcircgWcgWaaaaGUczRcBeacjcBfcBgcxTcxTcxTcxTcxTcxTcxTaaacuzaaacxTcxTcxTcxTcxTcxTcxTaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrczacuGcBhcBicBjcBjcBkbZrbZrbZrbZrbZrbZrciQciQciQciQciQcvFcvGcBlcrYcrZcBmciQciQaaaaaaaaaaaaaaaabmaaaaGUcBncBocBpcBqcBrcBscBtcBucBvcBvcBvcBvcBvcBvcBvcBwcBwcBwcBwcymcBxczqcByczqcBzcBAcymcxIcxIcBBcsDcBCcBDcBDcBDcsDcBEcBFcBGcBHcAmcsDcBDcBDcBDcBCcsDcBIcxIcxIcBJcBKcBLcBMcBNcBOcBPcsDcsDcsDcvjcvjaaaaaaaaaaaaabmabmabmabmabmaaacgWcgWcircircBQcircircgWcgWaGUczRaJiaaaabacBRcBScyVcyVcyVcyVcyVcyVcyWcuzcyXcyYcyYcyYcyYcyYcyYcyZaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZrbZrczacuGcaLcBhcuIcBTcBTcBTcBTcBTcBUcBVcBVcBVcvGcvGcBWcwAcBXcBYciQciQciQaaaaaaaaaaaaaaaaaaabmaaaaGUcBZcCaaFfaFfaFfaFfaFfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcymcymcymcymcymcymcCbcsDcCccCdcsDcCecCfcCgcCfcvdcAkcChcCicCjcAmcvdcCfcCfcCfcCkcsDcClcCmcsDcsDcsDcsDcsDcsDcsDcsDcsDaaaabmaaaaaaaaaabmabmabmabmabmaaaaaaaaaaaacjlcCncircgWcgWcgWcircircgWaGkczRaJiaaaabaacjczTczTczTczTczTczTczTaaacuzaaaczTczTczTczTczTczTczTaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZrbZsbZrcCocCpcCqcCrcCscCtcCucCvcCwcCxcwBcwBcwBcCxcCyciQciQciQaaaaaaaaaabbabbabbabfabmabmabmabmcCzabmabmabmabmabmabfabbabbabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcsDcBBcsDcsDcvdcvdcvdcvdcCAcCBcCCcCBcCDcvdcvdcvdcvdcsDcsDcBIcsDcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmabmaaaaaaaaaaaaaaaaaaaaaaaacjlcircircCEcCFcCEcCGcCHcCIcyScCJaMtabmabaaaaaaaaaaaaaaaaabmaaaaaaaaacCKaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaabZrbZsbZsbZrbZrbZrbZrbZrcCLciQciQciQciQciQciQciQciQaaaabmabmabmabmabbaaaaaaabmaaaabmaaaaaacCMaaaaaaabmaaaabmaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCNcCOcsDcsDcCPcvdcvdcvdcvdcvdcvdcvdcvdcvdcCQcsDcsDcCOcCNcsDabmabmabmabmabmabmabmabmabmabmabmaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaacjlcircircircCRcCScCTcircgWaFfaFfaaaaaaabaabaabbabaaaacxTcxTcxTcxTaaacCUaaacxTcxTcxTcxTaaaabaabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaabmaaaaaacCVcCWcCXcCYcCZcDacDbcDccDdcCWcCVaaaaaaaaaaaaaaaaaaabmaaaabbabmaaacDecDecDecDeaaacDfaaacDecDecDecDeaaaabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOcCOaaaabmabmabmabmabmabmabmabmabmabmabmaaacCOcCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaacgWcgWcDgcircDhcircircgWcgWaaaaaaaaaaaaaaaaaaaaaabaaaacyUcyVcyVcyVcDicDjcDicyYcyYcyYcyZaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmaaaabmabmabmcCVcDkcDlcDmcDncDocDpcDqcDrcDscDtabmabmabmabmabmabmabmabmabbaaaaaacDucDvcDvcDvcDwcDfcDxcDycDycDycDzaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcvbcDAcCOcCOabmabmaaaaaaaaaaaaaaaabmaaaaaaaaaabmabmcCOcCOcDAcvbcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgWcgWcircircircgWcgWaaaaaaaaaaaaaaaaaaaaaaaaabfaaaczTczTczTczTaaacCUaaaczTczTczTczTaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmabmabmabmaaacCVcDBcDCcDDcDEcDFcDpcDqcDscDGcCVaaaaaaabmaaaaaaaaaabaabaabbczSaaacDHcDHcDHcDHaaacDfaaacDHcDHcDHcDHaaaabmabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcDIcDJcDKabmabmcDLaaaaaacDLaaaabmaaaaaacDLabmabmcDMcDNcDOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgWcjlcjlcjlcgWaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabmaaaabmaaaaaacCUaaaaaaabmaaaabmaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacDPcDPcDscDpcDQcDQcDRcDRcDScDPcDPaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaabmaaaaaaaaacDfaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOaaaaaaabmabmaaaaaaaaaaaaaaaabmaaaaaaaaaabmabmaaaaaacCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabbabbabbabmabmaaacCUaaaabmabmabbabbabbabfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacDPcDTcDUcDpcDVcDWcDRcDXcDPabmaaaaaaaaaaaaaaaaaaabaaaacDecDecDecDecDecDecDeaaacDfaaacDecDecDecDecDecDecDeaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOaaaaaaabmabmaaaaaaabmabmabmabmabmaaaaaaabmabmaaaaaacCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabmcDYabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmcDPcDPcDPcDscDqcDqcDPcDPcDPabmaaaaaaaaaaaaaaaaaaabaaaacDucDvcDvcDvcDvcDvcDvcDwcDfcDxcDycDycDycDycDycDycDzaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOaaaaaaabmabmabmabmabmabXabYcDZabmaaacDLabmabmaaaaaacCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaabmaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacDPcEacEbcCVcDPaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaacDHcDHcDHcDHcDHcDHcDHaaacDfaaacDHcDHcDHcDHcDHcDHcDHaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOaaaaaaabmabmaaaaaaabmadocEcaopabmaaaaaaabmabmaaaaaacCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabbabbabbabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaabmaaaaaaaaacEdaaaaaaaaaabmaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOabmaaaabmabmcDLaaaabmagcajlaryabmabmabmabmabmaaaabmcCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbabmaaacDecDecDecDeaaacCzaaacDecDecDecDeaaaabmabbabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcCOcCOcCOabmabmabmaaaaaaabmabmabmabmabmaaaaaaabmabmabmcCOcCOcCOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaacDucDvcDvcDvcEecEfcEecDycDycDycDzaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcvbcDAcCOabmabmabmaaaaaaaaaabmaaaaaaaaaaaaaaaabmabmabmcCOcDAcvbcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabmaaacDHcDHcDHcDHaaacCzaaacDHcDHcDHcDHaaaabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcDIcDJcDKabmabmcDLaaaaaaabmaaacDLaaaaaacDLabmabmcDMcDNcDOcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaaabmaaaabmaaaaaacCzaaaaaaabmaaaabmaaaaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcsDcCOcCOcCOabmabmabmabmabmabmabmabmabmabmabmcCOcCOcCOcsDcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabbabbabbabbabmabmaaacCzaaaabmabmabbabbabbabfabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcsDcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcsDcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabmcEgabmabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcsDcsDcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcCOcsDcsDcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaabmaaaabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsDcsDcsDcsDcCOcCOcCOcCOcCOcsDcsDcsDcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbabbabbabbabbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvbcsDcsDcsDcsDcsDcvbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7203,10 +7200,10 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacEhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacEiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7236,4 +7233,3 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} - From 40c9527211c4d47af97bcd1f253ed6ac2f82fdeb Mon Sep 17 00:00:00 2001 From: Lularian Date: Wed, 21 Oct 2015 09:31:39 -0500 Subject: [PATCH 25/25] Annoying desc for medbay sign --- code/game/objects/structures/signs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 462b3b18de9..5c21ff8be4c 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -160,12 +160,12 @@ /obj/structure/sign/bluecross name = "medbay" - desc = "The Intergalactic symbol of Medical institutions. You'll probably get help here.'" + desc = "The Intergalactic symbol of Medical institutions. You'll probably get help here." icon_state = "bluecross" /obj/structure/sign/bluecross_2 name = "medbay" - desc = "The Intergalactic symbol of Medical institutions. You'll probably get help here.'" + desc = "The Intergalactic symbol of Medical institutions. You'll probably get help here." icon_state = "bluecross2" /obj/structure/sign/goldenplaque